net/
mg_base64encode.pro
includes main-level programRoutines
top mg_base64encode
result = mg_base64encode(s)
Encode a string using Base64, performs the inverse operation as
MG_BASE64DECODE
.
Return value
string
Parameters
- s in required type=string
string to encode
Examples
Try:
IDL> s = 'username: password'
IDL> print, s, format='(%"Original string: \"%s\"")'
Original string: "username: password"
IDL> enc = mg_base64encode(s)
IDL> print, enc, format='(%"Encoded string: \"%s\"")'
Encoded string: "dXNlcm5hbWU6IHBhc3N3b3Jk"
IDL> dec = mg_base64decode(enc)
IDL> print, dec, format='(%"Decoded string: \"%s\"")'
Decoded string: "username: password"
File attributes
Modification date: | Wed May 14 15:07:14 2014 |
Lines: | 24 |
Docformat: | rst rst |
Contact me if you have enhancement requests or bug fixes.