diff options
| author | Frank Denis <github@pureftpd.org> | 2020-08-19 16:21:05 +0200 |
|---|---|---|
| committer | Frank Denis <github@pureftpd.org> | 2020-08-20 23:02:05 +0200 |
| commit | 6f9ea9eaef79863ebdc9bf44b2af67ec4caad031 (patch) | |
| tree | 4a34acd626affbf4e98484a357e6464c92952b2a /tools/process_headers.zig | |
| parent | 1a4059ed88740c0289b7fea5735115fa9481a8e5 (diff) | |
| download | zig-6f9ea9eaef79863ebdc9bf44b2af67ec4caad031.tar.gz zig-6f9ea9eaef79863ebdc9bf44b2af67ec4caad031.zip | |
Breaking: sort std/crypto functions into categories
Instead of having all primitives and constructions share the same namespace,
they are now organized by category and function family.
Types within the same category are expected to share the exact same API.
Diffstat (limited to 'tools/process_headers.zig')
| -rw-r--r-- | tools/process_headers.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/process_headers.zig b/tools/process_headers.zig index d17069401e..ba9fde6683 100644 --- a/tools/process_headers.zig +++ b/tools/process_headers.zig @@ -313,7 +313,7 @@ pub fn main() !void { var max_bytes_saved: usize = 0; var total_bytes: usize = 0; - var hasher = std.crypto.Sha256.init(); + var hasher = std.crypto.hash.sha2.Sha256.init(); for (libc_targets) |libc_target| { const dest_target = DestTarget{ |
