]> WPIA git - cassiopeia.git/blobdiff - lib/openssl/MacOS/Randomizer.h
upd: openssl to 1.1.0
[cassiopeia.git] / lib / openssl / MacOS / Randomizer.h
diff --git a/lib/openssl/MacOS/Randomizer.h b/lib/openssl/MacOS/Randomizer.h
deleted file mode 100644 (file)
index 565537b..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-
-//     Gathers unpredictable system data to be used for generating
-//     random bits
-
-#include <MacTypes.h>
-
-class CRandomizer
-{
-public:
-       CRandomizer (void);
-       void PeriodicAction (void);
-       
-private:
-
-       // Private calls
-
-       void            AddTimeSinceMachineStartup (void);
-       void            AddAbsoluteSystemStartupTime (void);
-       void            AddAppRunningTime (void);
-       void            AddStartupVolumeInfo (void);
-       void            AddFiller (void);
-
-       void            AddCurrentMouse (void);
-       void            AddNow (double millisecondUncertainty);
-       void            AddBytes (void *data, long size, double entropy);
-       
-       void            GetTimeBaseResolution (void);
-       unsigned long   SysTimer (void);
-
-       // System Info  
-       bool            mSupportsLargeVolumes;
-       bool            mIsPowerPC;
-       bool            mIs601;
-       
-       // Time info
-       double          mTimebaseTicksPerMillisec;
-       unsigned long   mLastPeriodicTicks;
-       
-       // Mouse info
-       long            mSamplePeriod;
-       Point           mLastMouse;
-       long            mMouseStill;
-};