• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

bench/H03-May-2022-781481

cmake/H03-May-2022-

doc/man/H03-Apr-2018-984941

src/H03-May-2022-21,48815,706

test/H03-May-2022-842533

.gitattributesH A D03-Apr-201849 42

ChangelogH A D03-Apr-20181.9 KiB5746

LICENSEH A D03-Apr-20181.5 KiB2622

READMEH A D03-Apr-2018999 6448

README

1
2    Akmos is a cryptographic library with CLI
3
4=== Overview ===
5
6Akmos provides symmetric encryption/decryption, computing message digests (hashes)
7and calculating a message authentication code (MAC).
8Depends only on the standard C library. Primary develop for the x86_64 architecture.
9
10=== Feauters ===
11
12List of supported algorithms:
13
14block ciphers:
15 * Anubis
16 * Blowfish
17 * Camellia
18 * CAST6
19 * RC6
20 * Rijndael
21 * SEED
22 * Serpent
23 * Threefish
24 * Twofish
25
26stream ciphers:
27 * Salsa
28 * Chacha
29
30digests:
31 * Ripemd (160/256/320)
32 * SHA1
33 * SHA2 (224/256/384/512)
34 * SHA3 (224/256/384/512)
35 * Skein
36 * Tiger
37 * Whirlpool
38
39List of supported block cipher modes:
40 * CBC
41 * CFB
42 * CFB1
43 * CTR
44 * ECB
45 * OFB
46
47List of supported MAC modes:
48 * CMAC
49 * CBC-MAC
50 * HMAC
51
52List of supported Key Derivation Function:
53 * PBKDF2
54 * Scrypt
55
56Binary to text encoding:
57 * Base64
58
59=== Copyright ===
60
61Akmos is free software, distributed under the BSD License.
62Copyright (C) 2014-2018 Andrew Romanenko <melanhit@gmail.com>
63
64