base64 - base64 and URL encoding and decoding + md5hashing

Downloaded 287 times
Average rating
(2 votes)

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 snapshotsDateSizeLinksStatus
IGOR.5.00.x-1.0.x-dev2011-Nov-09556.93 KBDevelopment snapshot for Igor 5.00.x and aboveHelp



Back to top