Haxe API Documentation
Back | Index
class haxe.crypto.BaseCode
Available in flash8, neko, js, flash, php, cpp
Allows to encode/decode String and bytes using a power of two base dictionnary.
function new(base : haxe.io.Bytes) : Void
function decodeBytes(b : haxe.io.Bytes) : haxe.io.Bytes
function decodeString(s : String) : String
function encodeBytes(b : haxe.io.Bytes) : haxe.io.Bytes
function encodeString(s : String) : String
static function decode(s : String, base : String) : String
static function encode(s : String, base : String) : String
Back | Index