Sybren A. Stüvel | aa28c04 | 2011-07-30 23:48:00 +0200 | [diff] [blame] | 1 | Usage |
| 2 | ================================================== |
| 3 | |
Sybren A. Stüvel | a3fd61a | 2011-07-31 00:22:31 +0200 | [diff] [blame] | 4 | This section describes the usage of the Python-RSA module. |
Sybren A. Stüvel | aa28c04 | 2011-07-30 23:48:00 +0200 | [diff] [blame] | 5 | |
Sybren A. Stüvel | aa28c04 | 2011-07-30 23:48:00 +0200 | [diff] [blame] | 6 | |
Sybren A. Stüvel | a3fd61a | 2011-07-31 00:22:31 +0200 | [diff] [blame] | 7 | Generating keys |
| 8 | -------------------------------------------------- |
| 9 | |
| 10 | Before you can use RSA you need keys. You will receive a private key |
| 11 | and a public key. |
| 12 | |
| 13 | .. note:: |
| 14 | |
| 15 | The private key is called *private* for a reason. Never share this |
| 16 | key with anyone. |
| 17 | |
| 18 | |
| 19 | Encryption and decryption |
| 20 | -------------------------------------------------- |
| 21 | |
| 22 | |
| 23 | Signing and verification |
| 24 | -------------------------------------------------- |
| 25 | |
| 26 | |
| 27 | Working with big files |
| 28 | -------------------------------------------------- |
| 29 | |
| 30 | |
Sybren A. Stüvel | aa28c04 | 2011-07-30 23:48:00 +0200 | [diff] [blame] | 31 | |