/js/lib/Socket.IO-node/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/IPRNG.as
http://github.com/onedayitwillmake/RealtimeMultiplayerNodeJs · ActionScript · 20 lines · 11 code · 1 blank · 8 comment · 0 complexity · bdb70c7b0667c8b0400781ae9e9942eb MD5 · raw file
- /**
- * IPRNG
- *
- * An interface for classes that can be used a pseudo-random number generators
- * Copyright (c) 2007 Henri Torgemane
- *
- * See LICENSE.txt for full license information.
- */
- package com.hurlant.crypto.prng
- {
- import flash.utils.ByteArray;
-
- public interface IPRNG {
- function getPoolSize():uint;
- function init(key:ByteArray):void;
- function next():uint;
- function dispose():void;
- function toString():String;
- }
- }