RIPEME160(SHA256(msg)) -> bytes
(msg)
| 30 | return hashlib.sha256(hashlib.sha256(msg).digest()).digest() |
| 31 | |
| 32 | def Hash160(msg): |
| 33 | """RIPEME160(SHA256(msg)) -> bytes""" |
| 34 | return ripemd160(hashlib.sha256(msg).digest()) |
| 35 | |
| 36 | class SerializationError(Exception): |
| 37 | """Base class for serialization errors""" |
no test coverage detected