(data,map)
| 169 | |
| 170 | # Hash the bytes in data and then encode the digest with the characters in map |
| 171 | def encodeHash(data,map): |
| 172 | return encode(MD5(data),map) |
| 173 | |
| 174 | # Decode the string in data with the characters in map. Returns the decoded bytes |
| 175 | def decode(data,map): |
no test coverage detected