Fix Blake2 context not being exported.

Bump version to 0.4.10.
This commit is contained in:
cheatfate 2020-02-24 21:07:06 +02:00
parent 71b41764ae
commit 04f933314c
No known key found for this signature in database
GPG Key ID: 46ADD633A7201F95
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# Package
version = "0.4.9"
version = "0.4.10"
author = "Eugene Kabanov"
description = "Nim cryptographic library"
license = "MIT"

View File

@ -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]