rsa struct contains the public key, private key and modulus
| 22 | |
| 23 | // rsa struct contains the public key, private key and modulus |
| 24 | type rsa struct { |
| 25 | publicKey uint64 |
| 26 | privateKey uint64 |
| 27 | modulus uint64 |
| 28 | } |
| 29 | |
| 30 | // New initializes the RSA algorithm |
| 31 | // returns the RSA object |
nothing calls this directly
no outgoing calls
no test coverage detected