From 90fddd72de2f65109fad0cb76766659eb9ac8962 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 2 Mar 2018 08:05:04 +0100 Subject: [PATCH] Started adding multiplicative inverse --- XMath/Galois.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/XMath/Galois.cpp b/XMath/Galois.cpp index 5fb053c..5281218 100644 --- a/XMath/Galois.cpp +++ b/XMath/Galois.cpp @@ -2,6 +2,7 @@ #include "Galois.h" #include +#include namespace CryptoCPP{ namespace Math{ @@ -105,7 +106,12 @@ namespace CryptoCPP{ GALOIS_API Galois * Galois::inv() const { + size_t * compute = new size_t[exponent+1]; + memset(compute, 0, (exponent + 1) * sizeof(size_t)); + std::vector factors = new std::vector(); + + // TODO: Implement extended Euclidean algorithm } // These internal functions assume that an adequate state size has been chose