Fix Blake2 context not being exported.
Bump version to 0.4.10.
This commit is contained in:
parent
71b41764ae
commit
04f933314c
|
@ -1,6 +1,6 @@
|
|||
# Package
|
||||
|
||||
version = "0.4.9"
|
||||
version = "0.4.10"
|
||||
author = "Eugene Kabanov"
|
||||
description = "Nim cryptographic library"
|
||||
license = "MIT"
|
||||
|
|
|
@ -20,7 +20,7 @@ export hash
|
|||
{.deadCodeElim: on.}
|
||||
|
||||
type
|
||||
Blake2bContext[bits: static[int]] = object
|
||||
Blake2bContext*[bits: static[int]] = object
|
||||
b: array[128, byte]
|
||||
h: array[8, uint64]
|
||||
t: array[2, uint64]
|
||||
|
@ -30,7 +30,7 @@ type
|
|||
tb: array[2, uint64]
|
||||
cb: int
|
||||
|
||||
Blake2sContext[bits: static[int]] = object
|
||||
Blake2sContext*[bits: static[int]] = object
|
||||
b: array[64, byte]
|
||||
h: array[8, uint32]
|
||||
t: array[2, uint32]
|
||||
|
|
Loading…
Reference in New Issue