From 5ec66c07972c9a876ba7791bdaa131e9f3a637b7 Mon Sep 17 00:00:00 2001 From: Johannes Date: Mon, 27 Jan 2025 07:23:36 +0100 Subject: [PATCH] Copyright-year 2025 (#426) --- LICENSE | 2 +- benches/bench.rs | 2 +- src/errors.rs | 2 +- src/hazardous/aead/chacha20poly1305.rs | 2 +- src/hazardous/aead/mod.rs | 2 +- src/hazardous/aead/streaming.rs | 2 +- src/hazardous/aead/xchacha20poly1305.rs | 2 +- src/hazardous/cae/chacha20poly1305blake2b.rs | 2 +- src/hazardous/cae/mod.rs | 2 +- src/hazardous/cae/xchacha20poly1305blake2b.rs | 2 +- src/hazardous/ecc/mod.rs | 2 +- src/hazardous/ecc/x25519.rs | 2 +- src/hazardous/hash/blake2/blake2b.rs | 2 +- src/hazardous/hash/blake2/mod.rs | 2 +- src/hazardous/hash/mod.rs | 2 +- src/hazardous/hash/sha2/mod.rs | 2 +- src/hazardous/hash/sha2/sha256.rs | 2 +- src/hazardous/hash/sha2/sha384.rs | 2 +- src/hazardous/hash/sha2/sha512.rs | 2 +- src/hazardous/hash/sha3/mod.rs | 2 +- src/hazardous/hash/sha3/sha3_224.rs | 2 +- src/hazardous/hash/sha3/sha3_256.rs | 2 +- src/hazardous/hash/sha3/sha3_384.rs | 2 +- src/hazardous/hash/sha3/sha3_512.rs | 2 +- src/hazardous/hash/sha3/shake128.rs | 2 +- src/hazardous/hash/sha3/shake256.rs | 2 +- src/hazardous/kdf/argon2i.rs | 2 +- src/hazardous/kdf/hkdf.rs | 2 +- src/hazardous/kdf/mod.rs | 2 +- src/hazardous/kdf/pbkdf2.rs | 2 +- src/hazardous/kem/mod.rs | 2 +- src/hazardous/kem/x25519_hkdf_sha256.rs | 2 +- src/hazardous/mac/blake2b.rs | 2 +- src/hazardous/mac/hmac.rs | 2 +- src/hazardous/mac/mod.rs | 2 +- src/hazardous/mac/poly1305.rs | 2 +- src/hazardous/mod.rs | 2 +- src/hazardous/stream/chacha20.rs | 2 +- src/hazardous/stream/mod.rs | 2 +- src/hazardous/stream/xchacha20.rs | 2 +- src/high_level/aead.rs | 2 +- src/high_level/auth.rs | 2 +- src/high_level/hash.rs | 2 +- src/high_level/hltypes.rs | 2 +- src/high_level/kdf.rs | 2 +- src/high_level/kex.rs | 2 +- src/high_level/mod.rs | 2 +- src/high_level/pwhash.rs | 2 +- src/lib.rs | 2 +- src/test_framework/aead_interface.rs | 2 +- src/test_framework/incremental_interface.rs | 2 +- src/test_framework/mod.rs | 2 +- src/test_framework/streamcipher_interface.rs | 2 +- src/test_framework/xof_interface.rs | 2 +- src/typedefs.rs | 2 +- src/util/endianness.rs | 2 +- src/util/mod.rs | 2 +- src/util/u32x4.rs | 2 +- src/util/u64x4.rs | 2 +- 59 files changed, 59 insertions(+), 59 deletions(-) diff --git a/LICENSE b/LICENSE index 56646e9d..1f73e4d6 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018-2024 The orion Developers +Copyright (c) 2018-2025 The orion Developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/benches/bench.rs b/benches/bench.rs index 869a473b..a8d3577b 100644 --- a/benches/bench.rs +++ b/benches/bench.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/errors.rs b/src/errors.rs index 822568a9..20d69e40 100644 --- a/src/errors.rs +++ b/src/errors.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/aead/chacha20poly1305.rs b/src/hazardous/aead/chacha20poly1305.rs index 3bd0cb45..aafa0f26 100644 --- a/src/hazardous/aead/chacha20poly1305.rs +++ b/src/hazardous/aead/chacha20poly1305.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/aead/mod.rs b/src/hazardous/aead/mod.rs index c1882827..00cf387f 100644 --- a/src/hazardous/aead/mod.rs +++ b/src/hazardous/aead/mod.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/aead/streaming.rs b/src/hazardous/aead/streaming.rs index 384f4fbb..3c58602f 100644 --- a/src/hazardous/aead/streaming.rs +++ b/src/hazardous/aead/streaming.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2019-2024 The orion Developers +// Copyright (c) 2019-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/aead/xchacha20poly1305.rs b/src/hazardous/aead/xchacha20poly1305.rs index cf2a4b00..607728e6 100644 --- a/src/hazardous/aead/xchacha20poly1305.rs +++ b/src/hazardous/aead/xchacha20poly1305.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/cae/chacha20poly1305blake2b.rs b/src/hazardous/cae/chacha20poly1305blake2b.rs index 19cef00f..1a62b04d 100644 --- a/src/hazardous/cae/chacha20poly1305blake2b.rs +++ b/src/hazardous/cae/chacha20poly1305blake2b.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2023 The orion Developers +// Copyright (c) 2023-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/cae/mod.rs b/src/hazardous/cae/mod.rs index 270821b6..d4c77cae 100644 --- a/src/hazardous/cae/mod.rs +++ b/src/hazardous/cae/mod.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2023 The orion Developers +// Copyright (c) 2023-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/cae/xchacha20poly1305blake2b.rs b/src/hazardous/cae/xchacha20poly1305blake2b.rs index 25d3c32e..e51df6fc 100644 --- a/src/hazardous/cae/xchacha20poly1305blake2b.rs +++ b/src/hazardous/cae/xchacha20poly1305blake2b.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2023 The orion Developers +// Copyright (c) 2023-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/ecc/mod.rs b/src/hazardous/ecc/mod.rs index cd0b3d74..8f92ce74 100644 --- a/src/hazardous/ecc/mod.rs +++ b/src/hazardous/ecc/mod.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2021-2024 The orion Developers +// Copyright (c) 2021-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/ecc/x25519.rs b/src/hazardous/ecc/x25519.rs index 84d82851..fd5a44c0 100644 --- a/src/hazardous/ecc/x25519.rs +++ b/src/hazardous/ecc/x25519.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2021-2024 The orion Developers +// Copyright (c) 2021-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/hash/blake2/blake2b.rs b/src/hazardous/hash/blake2/blake2b.rs index d617b461..e3f50bcf 100644 --- a/src/hazardous/hash/blake2/blake2b.rs +++ b/src/hazardous/hash/blake2/blake2b.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/hash/blake2/mod.rs b/src/hazardous/hash/blake2/mod.rs index 3470bd53..51341d5e 100644 --- a/src/hazardous/hash/blake2/mod.rs +++ b/src/hazardous/hash/blake2/mod.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/hash/mod.rs b/src/hazardous/hash/mod.rs index 8da8a59b..edbc9fb2 100644 --- a/src/hazardous/hash/mod.rs +++ b/src/hazardous/hash/mod.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/hash/sha2/mod.rs b/src/hazardous/hash/sha2/mod.rs index 586a60d9..c3e841d5 100644 --- a/src/hazardous/hash/sha2/mod.rs +++ b/src/hazardous/hash/sha2/mod.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2020-2024 The orion Developers +// Copyright (c) 2020-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/hash/sha2/sha256.rs b/src/hazardous/hash/sha2/sha256.rs index 258518ad..0e306cb9 100644 --- a/src/hazardous/hash/sha2/sha256.rs +++ b/src/hazardous/hash/sha2/sha256.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2020-2024 The orion Developers +// Copyright (c) 2020-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/hash/sha2/sha384.rs b/src/hazardous/hash/sha2/sha384.rs index 146a2629..81e50629 100644 --- a/src/hazardous/hash/sha2/sha384.rs +++ b/src/hazardous/hash/sha2/sha384.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2020-2024 The orion Developers +// Copyright (c) 2020-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/hash/sha2/sha512.rs b/src/hazardous/hash/sha2/sha512.rs index c30d94bc..cae4ff3f 100644 --- a/src/hazardous/hash/sha2/sha512.rs +++ b/src/hazardous/hash/sha2/sha512.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/hash/sha3/mod.rs b/src/hazardous/hash/sha3/mod.rs index d77fea5c..ad153b87 100644 --- a/src/hazardous/hash/sha3/mod.rs +++ b/src/hazardous/hash/sha3/mod.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2023-2024 The orion Developers +// Copyright (c) 2023-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/hash/sha3/sha3_224.rs b/src/hazardous/hash/sha3/sha3_224.rs index fe4c0f28..56a773e8 100644 --- a/src/hazardous/hash/sha3/sha3_224.rs +++ b/src/hazardous/hash/sha3/sha3_224.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2023-2024 The orion Developers +// Copyright (c) 2023-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/hash/sha3/sha3_256.rs b/src/hazardous/hash/sha3/sha3_256.rs index 5964350d..18a17a00 100644 --- a/src/hazardous/hash/sha3/sha3_256.rs +++ b/src/hazardous/hash/sha3/sha3_256.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2023-2024 The orion Developers +// Copyright (c) 2023-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/hash/sha3/sha3_384.rs b/src/hazardous/hash/sha3/sha3_384.rs index 1ef958f8..8326c365 100644 --- a/src/hazardous/hash/sha3/sha3_384.rs +++ b/src/hazardous/hash/sha3/sha3_384.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2023-2024 The orion Developers +// Copyright (c) 2023-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/hash/sha3/sha3_512.rs b/src/hazardous/hash/sha3/sha3_512.rs index f5f87264..85aa1dc9 100644 --- a/src/hazardous/hash/sha3/sha3_512.rs +++ b/src/hazardous/hash/sha3/sha3_512.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2023-2024 The orion Developers +// Copyright (c) 2023-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/hash/sha3/shake128.rs b/src/hazardous/hash/sha3/shake128.rs index a76dab45..88aab39b 100644 --- a/src/hazardous/hash/sha3/shake128.rs +++ b/src/hazardous/hash/sha3/shake128.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2024 The orion Developers +// Copyright (c) 2024-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/hash/sha3/shake256.rs b/src/hazardous/hash/sha3/shake256.rs index 2cfa31f8..51f3ca0c 100644 --- a/src/hazardous/hash/sha3/shake256.rs +++ b/src/hazardous/hash/sha3/shake256.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2024 The orion Developers +// Copyright (c) 2024-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/kdf/argon2i.rs b/src/hazardous/kdf/argon2i.rs index 0c54cd03..10f2be47 100644 --- a/src/hazardous/kdf/argon2i.rs +++ b/src/hazardous/kdf/argon2i.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2020-2024 The orion Developers +// Copyright (c) 2020-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/kdf/hkdf.rs b/src/hazardous/kdf/hkdf.rs index dab823d2..ae75ee7c 100644 --- a/src/hazardous/kdf/hkdf.rs +++ b/src/hazardous/kdf/hkdf.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/kdf/mod.rs b/src/hazardous/kdf/mod.rs index 15f1f20a..268f3a4a 100644 --- a/src/hazardous/kdf/mod.rs +++ b/src/hazardous/kdf/mod.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/kdf/pbkdf2.rs b/src/hazardous/kdf/pbkdf2.rs index 5024d16b..bdc48ce2 100644 --- a/src/hazardous/kdf/pbkdf2.rs +++ b/src/hazardous/kdf/pbkdf2.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/kem/mod.rs b/src/hazardous/kem/mod.rs index 767b6533..05112975 100644 --- a/src/hazardous/kem/mod.rs +++ b/src/hazardous/kem/mod.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2023 The orion Developers +// Copyright (c) 2023-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/kem/x25519_hkdf_sha256.rs b/src/hazardous/kem/x25519_hkdf_sha256.rs index 0ea9609f..bf85a807 100644 --- a/src/hazardous/kem/x25519_hkdf_sha256.rs +++ b/src/hazardous/kem/x25519_hkdf_sha256.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2023 The orion Developers +// Copyright (c) 2023-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/mac/blake2b.rs b/src/hazardous/mac/blake2b.rs index 5080eb78..cfe0f26a 100644 --- a/src/hazardous/mac/blake2b.rs +++ b/src/hazardous/mac/blake2b.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/mac/hmac.rs b/src/hazardous/mac/hmac.rs index c83e787a..1ba0a924 100644 --- a/src/hazardous/mac/hmac.rs +++ b/src/hazardous/mac/hmac.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/mac/mod.rs b/src/hazardous/mac/mod.rs index 19ecbe26..f1f41618 100644 --- a/src/hazardous/mac/mod.rs +++ b/src/hazardous/mac/mod.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/mac/poly1305.rs b/src/hazardous/mac/poly1305.rs index be5f8730..598967e5 100644 --- a/src/hazardous/mac/poly1305.rs +++ b/src/hazardous/mac/poly1305.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Based on the algorithm from https://github.com/floodyberry/poly1305-donna // Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/hazardous/mod.rs b/src/hazardous/mod.rs index 7bce2bb3..2882fbed 100644 --- a/src/hazardous/mod.rs +++ b/src/hazardous/mod.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/stream/chacha20.rs b/src/hazardous/stream/chacha20.rs index 4417919d..ddae4168 100644 --- a/src/hazardous/stream/chacha20.rs +++ b/src/hazardous/stream/chacha20.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/stream/mod.rs b/src/hazardous/stream/mod.rs index 3c03fb49..08faded6 100644 --- a/src/hazardous/stream/mod.rs +++ b/src/hazardous/stream/mod.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/hazardous/stream/xchacha20.rs b/src/hazardous/stream/xchacha20.rs index 65e7d073..13b6454c 100644 --- a/src/hazardous/stream/xchacha20.rs +++ b/src/hazardous/stream/xchacha20.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/high_level/aead.rs b/src/high_level/aead.rs index 73f57cd3..614bc9e0 100644 --- a/src/high_level/aead.rs +++ b/src/high_level/aead.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2020-2024 The orion Developers +// Copyright (c) 2020-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/high_level/auth.rs b/src/high_level/auth.rs index 37299158..195204c7 100644 --- a/src/high_level/auth.rs +++ b/src/high_level/auth.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2020-2024 The orion Developers +// Copyright (c) 2020-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/high_level/hash.rs b/src/high_level/hash.rs index 4d7f4acd..d6effb73 100644 --- a/src/high_level/hash.rs +++ b/src/high_level/hash.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2020-2024 The orion Developers +// Copyright (c) 2020-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/high_level/hltypes.rs b/src/high_level/hltypes.rs index ca536663..bba197b4 100644 --- a/src/high_level/hltypes.rs +++ b/src/high_level/hltypes.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2020-2024 The orion Developers +// Copyright (c) 2020-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/high_level/kdf.rs b/src/high_level/kdf.rs index 9f8f0821..726beb4b 100644 --- a/src/high_level/kdf.rs +++ b/src/high_level/kdf.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2020-2024 The orion Developers +// Copyright (c) 2020-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/high_level/kex.rs b/src/high_level/kex.rs index 952725c9..236fce68 100644 --- a/src/high_level/kex.rs +++ b/src/high_level/kex.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2021-2024 The orion Developers +// Copyright (c) 2021-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/high_level/mod.rs b/src/high_level/mod.rs index 1fc687f2..0203d160 100644 --- a/src/high_level/mod.rs +++ b/src/high_level/mod.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2020-2024 The orion Developers +// Copyright (c) 2020-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/high_level/pwhash.rs b/src/high_level/pwhash.rs index 93ce69e4..f51ef001 100644 --- a/src/high_level/pwhash.rs +++ b/src/high_level/pwhash.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2020-2024 The orion Developers +// Copyright (c) 2020-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/lib.rs b/src/lib.rs index 6c769a79..40cf6a9f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/test_framework/aead_interface.rs b/src/test_framework/aead_interface.rs index a5b874b0..6f84f8d3 100644 --- a/src/test_framework/aead_interface.rs +++ b/src/test_framework/aead_interface.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2019-2024 The orion Developers +// Copyright (c) 2019-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/test_framework/incremental_interface.rs b/src/test_framework/incremental_interface.rs index 6cb01f3d..385002bb 100644 --- a/src/test_framework/incremental_interface.rs +++ b/src/test_framework/incremental_interface.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2019-2024 The orion Developers +// Copyright (c) 2019-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/test_framework/mod.rs b/src/test_framework/mod.rs index 632af510..1b758f24 100644 --- a/src/test_framework/mod.rs +++ b/src/test_framework/mod.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2019-2024 The orion Developers +// Copyright (c) 2019-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/test_framework/streamcipher_interface.rs b/src/test_framework/streamcipher_interface.rs index 05e13fa4..74db7db0 100644 --- a/src/test_framework/streamcipher_interface.rs +++ b/src/test_framework/streamcipher_interface.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2019-2024 The orion Developers +// Copyright (c) 2019-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/test_framework/xof_interface.rs b/src/test_framework/xof_interface.rs index e06448e7..dec5d7f4 100644 --- a/src/test_framework/xof_interface.rs +++ b/src/test_framework/xof_interface.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2024 The orion Developers +// Copyright (c) 2024-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/typedefs.rs b/src/typedefs.rs index 780dfffe..04552085 100644 --- a/src/typedefs.rs +++ b/src/typedefs.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/util/endianness.rs b/src/util/endianness.rs index e9e7618a..13d17bb5 100644 --- a/src/util/endianness.rs +++ b/src/util/endianness.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2019-2024 The orion Developers +// Copyright (c) 2019-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/util/mod.rs b/src/util/mod.rs index 78ffb919..7de049e5 100644 --- a/src/util/mod.rs +++ b/src/util/mod.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2018-2024 The orion Developers +// Copyright (c) 2018-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/util/u32x4.rs b/src/util/u32x4.rs index df2a89a7..91681864 100644 --- a/src/util/u32x4.rs +++ b/src/util/u32x4.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2019-2024 The orion Developers +// Copyright (c) 2019-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/src/util/u64x4.rs b/src/util/u64x4.rs index eaaa4111..cfee8e6b 100644 --- a/src/util/u64x4.rs +++ b/src/util/u64x4.rs @@ -1,6 +1,6 @@ // MIT License -// Copyright (c) 2019-2024 The orion Developers +// Copyright (c) 2019-2025 The orion Developers // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal