diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-09 16:34:18 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-09 16:34:18 +0200 |
| commit | 288b45f50cd6691f19066a775b5e065cf89dc2bd (patch) | |
| tree | bb2ac72e56082eae9116405ff5f61ce442ae2f56 /core/crypto | |
| parent | 248b0fe9e155e1a00a04cb7b1fc687601d401d7c (diff) | |
package lines for encoding
Diffstat (limited to 'core/crypto')
| -rw-r--r-- | core/crypto/hkdf/hkdf.odin | 3 | ||||
| -rw-r--r-- | core/crypto/x25519/x25519.odin | 3 | ||||
| -rw-r--r-- | core/crypto/x448/x448.odin | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/core/crypto/hkdf/hkdf.odin b/core/crypto/hkdf/hkdf.odin index bffe09eff..9d9497668 100644 --- a/core/crypto/hkdf/hkdf.odin +++ b/core/crypto/hkdf/hkdf.odin @@ -1,6 +1,5 @@ /* -package hkdf implements the HKDF HMAC-based Extract-and-Expand Key -Derivation Function. +package hkdf implements the HKDF HMAC-based Extract-and-Expand Key Derivation Function. See: [[ https://www.rfc-editor.org/rfc/rfc5869 ]] */ diff --git a/core/crypto/x25519/x25519.odin b/core/crypto/x25519/x25519.odin index 6805c3ff8..8c0c6570d 100644 --- a/core/crypto/x25519/x25519.odin +++ b/core/crypto/x25519/x25519.odin @@ -1,6 +1,5 @@ /* -package x25519 implements the X25519 (aka curve25519) Elliptic-Curve -Diffie-Hellman key exchange protocol. +package x25519 implements the X25519 (aka curve25519) Elliptic-Curve Diffie-Hellman key exchange protocol. See: - [[ https://www.rfc-editor.org/rfc/rfc7748 ]] diff --git a/core/crypto/x448/x448.odin b/core/crypto/x448/x448.odin index 43c5d25e0..727bacf27 100644 --- a/core/crypto/x448/x448.odin +++ b/core/crypto/x448/x448.odin @@ -1,6 +1,5 @@ /* -package x448 implements the X448 (aka curve448) Elliptic-Curve -Diffie-Hellman key exchange protocol. +package x448 implements the X448 (aka curve448) Elliptic-Curve Diffie-Hellman key exchange protocol. See: - [[ https://www.rfc-editor.org/rfc/rfc7748 ]] |