Nim cryptographic library
Go to file
Eugene Kabanov a065c17418
Fix Nim v1.0.x compilation problems (#47)
* Fix #46.

* Bump version to 0.5.4.

* Disable Travis cache.

* Fix travis cache problems.
2020-09-07 17:51:33 +03:00
docs Fix hash in documentation 2019-11-02 20:37:01 -07:00
examples CFB/OFB did not require padding, fix examples. 2018-10-23 13:33:13 +03:00
nimcrypto Fix Nim v1.0.x compilation problems (#47) 2020-09-07 17:51:33 +03:00
tests Fix Nim v1.0.x compilation problems (#47) 2020-09-07 17:51:33 +03:00
.gitignore refactor test suite execution to reduce duplication 2019-01-18 16:17:02 +01:00
.travis.yml Fix Nim v1.0.x compilation problems (#47) 2020-09-07 17:51:33 +03:00
LICENSE Initial commit 2018-03-11 11:43:12 +02:00
README.md Fix hash in documentation 2019-11-02 20:37:01 -07:00
appveyor.yml Fix Nim v1.0.x compilation problems (#47) 2020-09-07 17:51:33 +03:00
nimcrypto.nim Add SHA1 digest and tests. 2019-03-02 17:43:44 +02:00
nimcrypto.nimble Fix Nim v1.0.x compilation problems (#47) 2020-09-07 17:51:33 +03:00

README.md

nimcrypto Build Status Build Status

Nim cryptographic library

Nimcrypto is Nim's cryptographic library. It implements several popular cryptographic algorithms and their tests with some examples.

Most notably, this library has been used in the Nimbus Ethereum client. To see the implementation, check out its Github repository.

The most basic usage

nimble install nimcrypto # installation
# example.nim
import nimcrypto

echo keccak_256.digest("Alice makes a hash") 
# outputs F8AE86DA35CF3D9F0816BAA6015A6AFFD20BA5D6A533FEA94D89D6164264326F

See full documentation here.