(address)
| 239 | return status,addressVersionNumber,streamNumber,x00string+embeddedRipeData |
| 240 | |
| 241 | def addBMIfNotPresent(address): |
| 242 | address = str(address).strip() |
| 243 | if address[:3] != 'BM-': |
| 244 | return 'BM-'+address |
| 245 | else: |
| 246 | return address |
| 247 | |
| 248 | if __name__ == "__main__": |
| 249 | print 'Let us make an address from scratch. Suppose we generate two random 32 byte values and call the first one the signing key and the second one the encryption key:' |
no outgoing calls
no test coverage detected