| author | |
| committer | |
| log | 74a1175d9db56e0c6c3603699027434c489f4518 |
| tree | 2def3d6b1e345669a3e4aa391966a10d0cc93902 |
| parent | e3fed3c8141805702146601bc889341638a9c64e |
10 files changed, 60 insertions(+), 0 deletions(-)
lib/std/crypto/aegis.zig+6| ... | @@ -1,3 +1,9 @@ | ... | @@ -1,3 +1,9 @@ |
| 1 | // SPDX-License-Identifier: MIT | ||
| 2 | // Copyright (c) 2015-2020 Zig Contributors | ||
| 3 | // This file is part of [zig](https://ziglang.org/), which is MIT licensed. | ||
| 4 | // The MIT license requires this copyright notice to be included in all copies | ||
| 5 | // and substantial portions of the software. | ||
| 6 | |||
| 1 | const std = @import("std"); | 7 | const std = @import("std"); |
| 2 | const mem = std.mem; | 8 | const mem = std.mem; |
| 3 | const assert = std.debug.assert; | 9 | const assert = std.debug.assert; |
lib/std/crypto/aes_gcm.zig+6| ... | @@ -1,3 +1,9 @@ | ... | @@ -1,3 +1,9 @@ |
| 1 | // SPDX-License-Identifier: MIT | ||
| 2 | // Copyright (c) 2015-2020 Zig Contributors | ||
| 3 | // This file is part of [zig](https://ziglang.org/), which is MIT licensed. | ||
| 4 | // The MIT license requires this copyright notice to be included in all copies | ||
| 5 | // and substantial portions of the software. | ||
| 6 | |||
| 1 | const std = @import("std"); | 7 | const std = @import("std"); |
| 2 | const assert = std.debug.assert; | 8 | const assert = std.debug.assert; |
| 3 | const builtin = std.builtin; | 9 | const builtin = std.builtin; |
lib/std/crypto/bcrypt.zig+6| ... | @@ -1,3 +1,9 @@ | ... | @@ -1,3 +1,9 @@ |
| 1 | // SPDX-License-Identifier: MIT | ||
| 2 | // Copyright (c) 2015-2020 Zig Contributors | ||
| 3 | // This file is part of [zig](https://ziglang.org/), which is MIT licensed. | ||
| 4 | // The MIT license requires this copyright notice to be included in all copies | ||
| 5 | // and substantial portions of the software. | ||
| 6 | |||
| 1 | const std = @import("std"); | 7 | const std = @import("std"); |
| 2 | const crypto = std.crypto; | 8 | const crypto = std.crypto; |
| 3 | const fmt = std.fmt; | 9 | const fmt = std.fmt; |
lib/std/crypto/hkdf.zig+6| ... | @@ -1,3 +1,9 @@ | ... | @@ -1,3 +1,9 @@ |
| 1 | // SPDX-License-Identifier: MIT | ||
| 2 | // Copyright (c) 2015-2020 Zig Contributors | ||
| 3 | // This file is part of [zig](https://ziglang.org/), which is MIT licensed. | ||
| 4 | // The MIT license requires this copyright notice to be included in all copies | ||
| 5 | // and substantial portions of the software. | ||
| 6 | |||
| 1 | const std = @import("../std.zig"); | 7 | const std = @import("../std.zig"); |
| 2 | const assert = std.debug.assert; | 8 | const assert = std.debug.assert; |
| 3 | const hmac = std.crypto.auth.hmac; | 9 | const hmac = std.crypto.auth.hmac; |
lib/std/crypto/salsa20.zig+6| ... | @@ -1,3 +1,9 @@ | ... | @@ -1,3 +1,9 @@ |
| 1 | // SPDX-License-Identifier: MIT | ||
| 2 | // Copyright (c) 2015-2020 Zig Contributors | ||
| 3 | // This file is part of [zig](https://ziglang.org/), which is MIT licensed. | ||
| 4 | // The MIT license requires this copyright notice to be included in all copies | ||
| 5 | // and substantial portions of the software. | ||
| 6 | |||
| 1 | const std = @import("std"); | 7 | const std = @import("std"); |
| 2 | const crypto = std.crypto; | 8 | const crypto = std.crypto; |
| 3 | const debug = std.debug; | 9 | const debug = std.debug; |
lib/std/io/auto_indenting_stream.zig+6| ... | @@ -1,3 +1,9 @@ | ... | @@ -1,3 +1,9 @@ |
| 1 | // SPDX-License-Identifier: MIT | ||
| 2 | // Copyright (c) 2015-2020 Zig Contributors | ||
| 3 | // This file is part of [zig](https://ziglang.org/), which is MIT licensed. | ||
| 4 | // The MIT license requires this copyright notice to be included in all copies | ||
| 5 | // and substantial portions of the software. | ||
| 6 | |||
| 1 | const std = @import("../std.zig"); | 7 | const std = @import("../std.zig"); |
| 2 | const io = std.io; | 8 | const io = std.io; |
| 3 | const mem = std.mem; | 9 | const mem = std.mem; |
lib/std/io/change_detection_stream.zig+6| ... | @@ -1,3 +1,9 @@ | ... | @@ -1,3 +1,9 @@ |
| 1 | // SPDX-License-Identifier: MIT | ||
| 2 | // Copyright (c) 2015-2020 Zig Contributors | ||
| 3 | // This file is part of [zig](https://ziglang.org/), which is MIT licensed. | ||
| 4 | // The MIT license requires this copyright notice to be included in all copies | ||
| 5 | // and substantial portions of the software. | ||
| 6 | |||
| 1 | const std = @import("../std.zig"); | 7 | const std = @import("../std.zig"); |
| 2 | const io = std.io; | 8 | const io = std.io; |
| 3 | const mem = std.mem; | 9 | const mem = std.mem; |
lib/std/io/find_byte_out_stream.zig+6| ... | @@ -1,3 +1,9 @@ | ... | @@ -1,3 +1,9 @@ |
| 1 | // SPDX-License-Identifier: MIT | ||
| 2 | // Copyright (c) 2015-2020 Zig Contributors | ||
| 3 | // This file is part of [zig](https://ziglang.org/), which is MIT licensed. | ||
| 4 | // The MIT license requires this copyright notice to be included in all copies | ||
| 5 | // and substantial portions of the software. | ||
| 6 | |||
| 1 | const std = @import("../std.zig"); | 7 | const std = @import("../std.zig"); |
| 2 | const io = std.io; | 8 | const io = std.io; |
| 3 | const assert = std.debug.assert; | 9 | const assert = std.debug.assert; |
lib/std/os/bits/linux/powerpc64.zig+6| ... | @@ -1,3 +1,9 @@ | ... | @@ -1,3 +1,9 @@ |
| 1 | // SPDX-License-Identifier: MIT | ||
| 2 | // Copyright (c) 2015-2020 Zig Contributors | ||
| 3 | // This file is part of [zig](https://ziglang.org/), which is MIT licensed. | ||
| 4 | // The MIT license requires this copyright notice to be included in all copies | ||
| 5 | // and substantial portions of the software. | ||
| 6 | |||
| 1 | const std = @import("../../../std.zig"); | 7 | const std = @import("../../../std.zig"); |
| 2 | const linux = std.os.linux; | 8 | const linux = std.os.linux; |
| 3 | const socklen_t = linux.socklen_t; | 9 | const socklen_t = linux.socklen_t; |
lib/std/os/linux/powerpc64.zig+6| ... | @@ -1,3 +1,9 @@ | ... | @@ -1,3 +1,9 @@ |
| 1 | // SPDX-License-Identifier: MIT | ||
| 2 | // Copyright (c) 2015-2020 Zig Contributors | ||
| 3 | // This file is part of [zig](https://ziglang.org/), which is MIT licensed. | ||
| 4 | // The MIT license requires this copyright notice to be included in all copies | ||
| 5 | // and substantial portions of the software. | ||
| 6 | |||
| 1 | usingnamespace @import("../bits.zig"); | 7 | usingnamespace @import("../bits.zig"); |
| 2 | 8 | ||
| 3 | pub fn syscall0(number: SYS) usize { | 9 | pub fn syscall0(number: SYS) usize { |