CryptoCPP/XMath/Primes.h
GabrielTofvesson 521cbe335f Updated Matrix class
- Implemented determinant function
  - Added more function overloads for convenience
  - Fixed some typing issues
  - Added semi-proper function chaining
Changed how Vectors handle recieving arrays
Fixed small issue with namespaces not being used
Started structuring Galois class
2018-02-26 23:26:05 +01:00

12 lines
317 B
C++

#pragma once
#include "BigInteger.h"
namespace CryptoCPP {
namespace Primes {
bool fermat_prime_test(const Math::BigInteger & value, size_t certainty);
bool miller_rabin_prime_test(const Math::BigInteger & value, size_t certainty);
Math::BigInteger * generate_prime(size_t byteCount, size_t certainty);
}
}