/js/lib/Socket.IO-node/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/IHash.as
ActionScript | 21 lines | 12 code | 1 blank | 8 comment | 0 complexity | 71f45750c456debd7ef1f74e6db9dc23 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, MPL-2.0-no-copyleft-exception, BSD-3-Clause
- /**
- * 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;
- }
- }