(msg,cryptor)
| 29 | return makeCryptor(hexPrivkey).decrypt(msg) |
| 30 | # Decrypts message with an existing pyelliptic.ECC.ECC object |
| 31 | def decryptFast(msg,cryptor): |
| 32 | return cryptor.decrypt(msg) |
| 33 | # Signs with hex private key |
| 34 | def sign(msg,hexPrivkey): |
| 35 | # pyelliptic is upgrading from SHA1 to SHA256 for signing. We must |