- 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
12 lines
317 B
C++
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);
|
|
}
|
|
} |