authorgravatar for 124872+jedisct1@users.noreply.github.comFrank Denis <124872+jedisct1@users.noreply.github.com> 2020-10-26 08:56:29+01:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2020-10-26 17:41:29+01:00
log74a1175d9db56e0c6c3603699027434c489f4518
tree2def3d6b1e345669a3e4aa391966a10d0cc93902
parente3fed3c8141805702146601bc889341638a9c64e

std/*: add missing MIT license headers


10 files changed, 60 insertions(+), 0 deletions(-)

lib/std/crypto/aegis.zig+6
......@@ -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
17const std = @import("std");
28const mem = std.mem;
39const assert = std.debug.assert;
lib/std/crypto/aes_gcm.zig+6
......@@ -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
17const std = @import("std");
28const assert = std.debug.assert;
39const builtin = std.builtin;
lib/std/crypto/bcrypt.zig+6
......@@ -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
17const std = @import("std");
28const crypto = std.crypto;
39const fmt = std.fmt;
lib/std/crypto/hkdf.zig+6
......@@ -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
17const std = @import("../std.zig");
28const assert = std.debug.assert;
39const hmac = std.crypto.auth.hmac;
lib/std/crypto/salsa20.zig+6
......@@ -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
17const std = @import("std");
28const crypto = std.crypto;
39const debug = std.debug;
lib/std/io/auto_indenting_stream.zig+6
......@@ -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
17const std = @import("../std.zig");
28const io = std.io;
39const mem = std.mem;
lib/std/io/change_detection_stream.zig+6
......@@ -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
17const std = @import("../std.zig");
28const io = std.io;
39const mem = std.mem;
lib/std/io/find_byte_out_stream.zig+6
......@@ -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
17const std = @import("../std.zig");
28const io = std.io;
39const assert = std.debug.assert;
lib/std/os/bits/linux/powerpc64.zig+6
......@@ -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
17const std = @import("../../../std.zig");
28const linux = std.os.linux;
39const socklen_t = linux.socklen_t;
lib/std/os/linux/powerpc64.zig+6
......@@ -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
17usingnamespace @import("../bits.zig");
28
39pub fn syscall0(number: SYS) usize {