SecureRandomSpi.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00023 #ifndef _CLASS_BEE_SECURITY_SECURERANDOMSPI_H
00024 #define _CLASS_BEE_SECURITY_SECURERANDOMSPI_H
00025
00026 #ifdef __cplusplus
00027
00028 #include "beecrypt/c++/lang/Object.h"
00029 using beecrypt::lang::Object;
00030
00031 namespace beecrypt {
00032 namespace security {
00035 class BEECRYPTCXXAPI SecureRandomSpi : public Object
00036 {
00037 friend class SecureRandom;
00038
00039 protected:
00040 virtual void engineGenerateSeed(byte*, int) = 0;
00041 virtual void engineNextBytes(byte*, int) = 0;
00042 virtual void engineSetSeed(const byte*, int) = 0;
00043
00044 public:
00045 virtual ~SecureRandomSpi() {}
00046 };
00047 }
00048 }
00049
00050 #endif
00051
00052 #endif