Difference between revisions of "BASE64 DECODE()"

From Lianjapedia
Jump to: navigation, search
m (Text replace - "Recital" to "Lianja")
Line 34: Line 34:
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 +
[[Category:Lianja VFP Extensions]]
 +
[[Category:VFP Function Extensions]]

Revision as of 07:04, 10 December 2012

Purpose

Decode a string encoded with MIME base64


Syntax

BASE64_DECODE(<expC>)


See Also

BASE64_ENCODE()


Description

The BASE64_DECODE() function is used to decode a string encoded with MIME base64.

The BASE64_ENCODE() function is used to encode with MIME base64.


Example

// Check password against file
m_pass=space(10)
@10,10 get m_pass
read
if m_pass <> base64_decode(filetostr("password.txt"))
    // invalid password
    return
endif


Products

Lianja, Lianja Server