nimcrypto/nimcrypto.nim

21 lines
692 B
Nim

#
#
# NimCrypto
# (c) Copyright 2018 Eugene Kabanov
#
# See the file "LICENSE", included in this
# distribution, for details about the copyright.
#
import nimcrypto/[hash, sha2, ripemd, keccak, blake2, sha, hmac]
import nimcrypto/[rijndael, blowfish, twofish, bcmode]
import nimcrypto/[utils, sysrand]
## Nimcrypto is the Nim language's cryptographic library.
## It implements several popular cryptographic algorithms and their tests,
## with some examples in the official repo:
## https://github.com/cheatfate/nimcrypto/tree/master/examples
export hash, sha, sha2, ripemd, keccak, blake2, hmac, rijndael, twofish,
blowfish, bcmode, utils, sysrand