Sha256: c9fe48206ba9cb919e8757c14e8684394a7e1d1cdaaaeb4ae03f09da58dc6852
Contents?: true
Size: 599 Bytes
Versions: 19
Compression:
Stored size: 599 Bytes
Contents
/** * HMAC * * An ActionScript 3 interface for HMAC & MAC * implementations. * * Loosely copyrighted by Bobby Parker * * See LICENSE.txt for full license information. */ package com.hurlant.crypto.hash { import flash.utils.ByteArray; public interface IHMAC { function getHashSize():uint; /** * Compute a HMAC using a key and some data. * It doesn't modify either, and returns a new ByteArray with the HMAC value. */ function compute(key:ByteArray, data:ByteArray):ByteArray; function dispose():void; function toString():String; } }
Version data entries
19 entries across 19 versions & 4 rubygems