idllib

Personal IDL library for M. Galloy

single page | use frames     summary     class     fields     routine details     file attributes

net/

mg_base64encode.pro

includes main-level program

top source 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 Jul 6 13:58:52 2011
Lines: 61
Docformat: rst rst
Personal library of Michael Galloy
Contact me if you have enhancement requests or bug fixes.