diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-11-18 12:11:29 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-11-18 12:11:29 +0000 |
| commit | 784f320e12721761af494816cf07ed08d00deced (patch) | |
| tree | 7e873d87614f6b5f181188b2da1765669596da31 | |
| parent | 3e0f9cace6ec30ea308edab5d72baacc82d2201a (diff) | |
Fix indentation in comments
| -rw-r--r-- | core/crypto/siphash/siphash.odin | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/core/crypto/siphash/siphash.odin b/core/crypto/siphash/siphash.odin index 5fede4f55..fb1d42d49 100644 --- a/core/crypto/siphash/siphash.odin +++ b/core/crypto/siphash/siphash.odin @@ -10,11 +10,11 @@ See: package siphash /* - Copyright 2022 zhibog - Made available under Odin's license. + Copyright 2022 zhibog + Made available under Odin's license. - List of contributors: - zhibog: Initial implementation. + List of contributors: + zhibog: Initial implementation. */ import "core:crypto" @@ -22,7 +22,7 @@ import "core:encoding/endian" import "core:math/bits" /* - High level API + High level API */ KEY_SIZE :: 16 @@ -215,7 +215,7 @@ verify_4_8 :: proc { } /* - Low level API + Low level API */ init :: proc(ctx: ^Context, key: []byte, c_rounds, d_rounds: int) { |