/flash-src/third-party/com/hurlant/crypto/hash/IHash.as
http://github.com/gimite/web-socket-js · ActionScript · 21 lines · 12 code · 1 blank · 8 comment · 0 complexity · 71f45750c456debd7ef1f74e6db9dc23 MD5 · raw file
- /**
- * IHash
- *
- * An interface for each hash function to implement
- * Copyright (c) 2007 Henri Torgemane
- *
- * See LICENSE.txt for full license information.
- */
- package com.hurlant.crypto.hash
- {
- import flash.utils.ByteArray;
-
- public interface IHash
- {
- function getInputSize():uint;
- function getHashSize():uint;
- function hash(src:ByteArray):ByteArray;
- function toString():String;
- function getPadSize():int;
- }
- }