Including the node_modules folder for socket.io code.
[KiwiIRC.git] / node / node_modules / socket.io-client / lib / vendor / web-socket-js / flash-src / com / hurlant / crypto / prng / IPRNG.as
1 /**
2 * IPRNG
3 *
4 * An interface for classes that can be used a pseudo-random number generators
5 * Copyright (c) 2007 Henri Torgemane
6 *
7 * See LICENSE.txt for full license information.
8 */
9 package com.hurlant.crypto.prng
10 {
11 import flash.utils.ByteArray;
12
13 public interface IPRNG {
14 function getPoolSize():uint;
15 function init(key:ByteArray):void;
16 function next():uint;
17 function dispose():void;
18 function toString():String;
19 }
20 }