Implemented GPrng pnrg

This commit is contained in:
Leonetienne
2022-05-22 16:54:40 +02:00
parent bedfc91e04
commit 04c67436c4
8 changed files with 165 additions and 1 deletions

View File

@@ -50,5 +50,14 @@ namespace Leonetienne::GCrypt {
throw std::runtime_error("Unreachable branch reached.");
}
void GCipher::operator=(const GCipher& other) {
direction = other.direction;
feistel = other.feistel;
lastBlock = other.lastBlock;
return;
}
}