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) {