Update README.md

This commit is contained in:
Andy 2014-09-11 17:57:59 +02:00
parent 5b41f309f2
commit a543dd2a84

View File

@ -3,6 +3,7 @@ RSA Key Generation, Encryption and Decryption example in python
You can use as reference OpenSSL's RSA module that can produce following output, e.g. You can use as reference OpenSSL's RSA module that can produce following output, e.g.
```bash
$ openssl genrsa 32 |openssl rsa -noout -text $ openssl genrsa 32 |openssl rsa -noout -text
Generating RSA private key, 32 bit long modulus Generating RSA private key, 32 bit long modulus
.+++++++++++++++++++++++++++ .+++++++++++++++++++++++++++
@ -19,4 +20,5 @@ exponent2: 28991 (0x713f)
coefficient: 16388 (0x4004) coefficient: 16388 (0x4004)
$ openssl genrsa 32 |openssl asn1parse $ openssl genrsa 32 |openssl asn1parse
```