Files
lime/externs/air/flash/security/AVMPlusDigest.hx
2017-08-25 14:04:53 -07:00

11 lines
341 B
Haxe

package flash.security;
extern class AVMPlusDigest {
function new() : Void;
function FinishDigest(inDigestToCompare : String) : UInt;
function Init(algorithm : UInt) : Void;
function Update(data : flash.utils.IDataInput) : UInt;
function UpdateWithString(data : String) : UInt;
static var DIGESTMETHOD_SHA256(default,never) : UInt;
}