Skip to content

adurandom/CryptAda

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

95 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CryptAda

CryptAda contains a pure Ada implementation of some cryptography primitives. It is based on an early development called Ada Cryptographic Framework (ACF).

At the moment of this writing (April 6th, 2017) the following is implemented in CryptAda:

  • Message Digest Algorithms
    • MD2
    • MD4
    • MD5
    • RIPEMD-128
    • RIPEMD-160
    • SHA-1
    • SHA-224 (SHA-2)
    • SHA-256 (SHA-2)
    • SHA-384 (SHA-2)
    • SHA-512 (SHA-2)
    • SHA-3 (224, 256, 384, & 512-bit hashes)
    • Snefru (128 and 256 with 4 and 8 passes)
    • Tiger (128, 160 & 192 bit digests wirh 3 .. 4 passes)
    • Haval (128, 160, 192, 224 & 256 bit and 3 .. 5 passes)
    • Whirlpool
  • Secure Pseudorandom Byte Generators
    • An implementation based on RSAREF
    • An experimental PRNG (CAPRNG)
  • Text Encoders
    • Hexadecimal text encoder
    • Base16 text encoder
    • Base64 text encoder
    • MIME text encoder
  • Symmetric Block Ciphers
    • DES
    • DESX
    • DES2X
    • TDEA (Triple DES EDE)
    • CAST_128
    • AES
    • Blowfish
    • RC2
    • IDEA
    • Twofish
  • Symmetric Stream Ciphers
    • RC4

... and all the unit tests for these packages.

Hope you enjoy it!