blob: 15ffcffa3f08dca677a2cce1b0443773600dc342 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/usr/bin/python
import botan
rng = botan.RandomNumberGenerator()
rsa_priv = botan.RSA_PrivateKey(768, rng)
print rsa_priv.to_string()
print int(rsa_priv.get_N())
print int(rsa_priv.get_E())
rsa_pub = botan.RSA_PublicKey(rsa_priv)
key = rng.gen_random(20)
ciphertext = rsa_pub.encrypt(key, 'EME1(SHA-1)', rng)
print ciphertext.encode('hex')
plaintext = rsa_priv.decrypt(ciphertext, 'EME1(SHA-1)')
print plaintext == key
signature = rsa_priv.sign(key, 'EMSA4(SHA-256)', rng)
key = key.replace('a', 'b')
print rsa_pub.verify(key, signature, 'EMSA4(SHA-256)')
|