(self, message, privatekey)
| 421 | print(CryptBitcoin.privatekeyToAddress(privatekey)) |
| 422 | |
| 423 | def cryptSign(self, message, privatekey): |
| 424 | from Crypt import CryptBitcoin |
| 425 | print(CryptBitcoin.sign(message, privatekey)) |
| 426 | |
| 427 | def cryptVerify(self, message, sign, address): |
| 428 | from Crypt import CryptBitcoin |