Doxygen adjustment, and better directory name for GCryptLib
This commit is contained in:
17
GCryptLib/include/InitializationVector.h
Normal file
17
GCryptLib/include/InitializationVector.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
#include "Config.h"
|
||||
#include "Block.h"
|
||||
|
||||
namespace Leonetienne::GCrypt {
|
||||
/** Will create a sudo-random Block based on a seed
|
||||
*/
|
||||
class InitializationVector {
|
||||
public:
|
||||
InitializationVector(const Block& seed);
|
||||
|
||||
operator Block() const;
|
||||
|
||||
private:
|
||||
Block iv;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user