mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
tweaks some comments
This commit is contained in:
parent
34aac1d756
commit
f06a05ce70
1 changed files with 4 additions and 4 deletions
|
|
@ -23,13 +23,13 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
// The blocksize of BLAKE2b in bytes.
|
// BlockSize the blocksize of BLAKE2b in bytes.
|
||||||
BlockSize = 128
|
BlockSize = 128
|
||||||
// The hash size of BLAKE2b-512 in bytes.
|
// Size the hash size of BLAKE2b-512 in bytes.
|
||||||
Size = 64
|
Size = 64
|
||||||
// The hash size of BLAKE2b-384 in bytes.
|
// Size384 the hash size of BLAKE2b-384 in bytes.
|
||||||
Size384 = 48
|
Size384 = 48
|
||||||
// The hash size of BLAKE2b-256 in bytes.
|
// Size256 the hash size of BLAKE2b-256 in bytes.
|
||||||
Size256 = 32
|
Size256 = 32
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue