Files
GCrypt/GhettoCrypt/InitializationVector.h
T

20 lines
335 B
C++
Raw Normal View History

2022-02-06 18:38:09 +01:00
#pragma once
#include "Config.h"
#include "Block.h"
namespace GhettoCipher
2022-02-06 18:38:09 +01:00
{
/** Will create a sudo-random Block based on a seed
*/
class InitializationVector
{
public:
InitializationVector(const GhettoCipher::Block& seed);
2022-02-06 18:38:09 +01:00
operator GhettoCipher::Block() const;
2022-02-06 18:38:09 +01:00
private:
GhettoCipher::Block iv;
};
}