Refactor project structure
This commit is contained in:
18
core/anslicensing/rand.h
Normal file
18
core/anslicensing/rand.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef __RAND_H
|
||||
#define __RAND_H
|
||||
|
||||
#include "bigint.h"
|
||||
|
||||
class random {
|
||||
public:
|
||||
random();
|
||||
~random();
|
||||
|
||||
unsigned rand( unsigned max );
|
||||
bigint rand( bigint & max );
|
||||
|
||||
protected:
|
||||
void * m_hCryptProv;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user