base64 - base64 and URL encoding and decoding + md5hashing
Posted March 28th, 2008 by andyfaff
Downloaded 287 times
This XOP does several useful encoding of strings.
1) It does base64 encoding and decoding of strings (useful for network utilities).
2) It does URL encoding of strings (useful for network utilities).
3) It does an md5 hash of a string.
Usage:
//base64
string testing = "test"
testing = base64encode(testing)
testing = base64decode(testing)
//URLencoding
string testing = "test test"
print URLencode(testing)
//md5 hashing
string testing = "The quick brown fox jumps over the lazy dog"
print md5hash(testing)
//should print 9e107d9d372bb6826bd81d3542a419d6
Releases
| Development snapshots | Date | Size | Links | Status | |
|---|---|---|---|---|---|
| IGOR.5.00.x-1.0.x-dev | 2011-Nov-09 | 556.93 KB | Development snapshot for Igor 5.00.x and above | Help | |
