(s: string)
| 11 | * They take string arguments and return either hex or base-64 encoded strings |
| 12 | */ |
| 13 | function hex_md5 (s: string) { return binl2hex(core_md5(str2binl(s), s.length * chrsz));} |
| 14 | |
| 15 | /* |
| 16 | * Calculate the MD5 of an array of little-endian words, and a bit length |