chiark / gitweb /
Merge remote-tracking branch 'origin/HEAD'
[catacomb-python] / algorithms.py
CommitLineData
d7ab1bab 1## -*-python-*-
2
3def cross(*seq):
4 if not len(seq):
5 return [(),]
6 x = seq[0]
7 if type(x) is not tuple and type(x) is not list:
8 x = x,
9 r = []
10 for i in x:
11 for j in cross(*seq[1:]):
12 r.append((i,) + j)
13 return r
14
15prps = '''
16des desx des3 mars
17idea safer safersk
18blowfish twofish
19tea xtea
20rc2 rc5
21skipjack
22cast128 cast256
23square rijndael rijndael192 rijndael256
24serpent noekeon
25'''.split()
26pmodes = '''
27ecb cbc cfb ofb counter
28'''.split()
29streamciphers = '''
30rc4 seal
31'''.split()
3f4f64b8 32latindances = '''
f9041075
MW
33salsa20 salsa20/12 salsa20/8
34salsa20-ietf salsa20/12-ietf salsa20/8-ietf
35xsalsa20 xsalsa20/12 xsalsa20/8
36chacha20 chacha12 chacha8
37chacha20-ietf chacha12-ietf chacha8-ietf
38xchacha20 xchacha12 xchacha8
3f4f64b8
MW
39'''.split()
40streamciphers += map(lambda s: s.translate(None, '/'), latindances)
d7ab1bab 41hashes = '''
42md2 md4 md5 tiger has160
cae28129 43sha sha224 sha256 sha512/224 sha512/256 sha384 sha512
d7ab1bab 44rmd128 rmd160 rmd256 rmd320
45whirlpool whirlpool256
6bd22b53 46sha3-224 sha3-256 sha3-384 sha3-512
d7ab1bab 47'''.split()
48hmodes = '''
49mgf hmac
50'''.split()
51
52print '/* algorithms.h [generated] */'
53print
54
55for i in prps:
a7f2e389 56 print '#include <catacomb/%s.h>' % i.replace('/', '-')
d7ab1bab 57 for j in pmodes:
a7f2e389 58 print '#include <catacomb/%s-%s.h>' % (i.replace('/', '-'), j)
d7ab1bab 59for i in streamciphers:
a7f2e389 60 print '#include <catacomb/%s.h>' % i.replace('/', '-')
d7ab1bab 61print
62for i in hashes:
a7f2e389 63 print '#include <catacomb/%s.h>' % i.replace('/', '-')
d7ab1bab 64 for j in hmodes:
a7f2e389 65 print '#include <catacomb/%s-%s.h>' % (i.replace('/', '-'), j)
d7ab1bab 66print
67
03ed9abb 68print '#define PRPS(_) \\'
d7ab1bab 69for i in prps:
eb0f76ed
MW
70 print '\t_(%s, %s) \\' % (i.upper(), i)
71print '\t/* end */'
03ed9abb
MW
72print
73
74print '#define RNGS(_) \\'
75for i in (cross(prps, ['ofb', 'counter'])):
a7f2e389
MW
76 print ('\t_("%(prim)s-%(mode)s", %(primid)s_keysz, ' +
77 '%(primid)s_%(mode)srand, RNG_PLAIN, 0) \\') % \
78 {'prim': i[0], 'mode': i[1],
79 'primid': i[0].replace('-', '_').replace('/', '_')}
03ed9abb 80for i in (cross(hashes, 'mgf')):
a7f2e389
MW
81 print ('\t_("%(prim)s-%(mode)s", %(primid)s_%(mode)skeysz, ' +
82 '%(primid)s_%(mode)srand, RNG_PLAIN, 0) \\') % \
83 {'prim': i[0], 'mode': i[1],
84 'primid': i[0].replace('-', '_').replace('/', '_')}
3f4f64b8 85print '\t_("rc4", rc4_keysz, rc4_rand, 0, 0) \\'
34825452 86print '\t_("seal", seal_keysz, seal_rand, RNG_SEAL, 0) \\'
3f4f64b8
MW
87for i in latindances:
88 for r in ['salsa20', 'xsalsa20', 'chacha', 'xchacha']:
89 if i.startswith(r):
90 root = r
91 break
92 else:
93 raise ValueError, 'failed to find root name for %s' % i
f9041075 94 if i.endswith('-ietf'): root += '_ietf'
3f4f64b8 95 print ('\t_("%(name)s", %(root)s_keysz, %(id)s_rand, ' +
34825452 96 'RNG_LATIN, %(ROOT)s_NONCESZ) \\') % \
f9041075 97 {'name': i, 'id': i.translate(None, '/').replace('-', '_'),
3f4f64b8 98 'root': root, 'ROOT': root.upper()}
6bd22b53
MW
99for i in [128, 256]:
100 print ('\t_("shake%(w)d", shake%(w)d_keysz, cshake%(w)d_rand, ' +
101 'RNG_SHAKE, 0) \\') % \
102 {'w': i}
103 print ('\t_("kmac%(w)d", kmac%(w)d_keysz, kmac%(w)d_rand, ' +
104 'RNG_KMAC, 0) \\') % \
105 {'w': i}
eb0f76ed 106print '\t/* end */'
d7ab1bab 107print