Sha256: 3605340f7751e1527bcbf65f873539baf22350a5a58369d03355fe8abbf2f40c
Contents?: true
Size: 445 Bytes
Versions: 19
Compression:
Stored size: 445 Bytes
Contents
/** * 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; } }
Version data entries
19 entries across 19 versions & 4 rubygems