Add Padder<>. A CRTP base for padding algorithms.
All checks were successful
Chaos Ci / test-and-benchmark (push) Successful in 1m59s
All checks were successful
Chaos Ci / test-and-benchmark (push) Successful in 1m59s
This commit is contained in:
@@ -5,12 +5,13 @@
|
||||
#include <iterator>
|
||||
#include <limits>
|
||||
|
||||
#include "Padding/Padder.hpp"
|
||||
#include "Service/ChaosException.hpp"
|
||||
|
||||
namespace Chaos::Padding
|
||||
{
|
||||
|
||||
class PadderPkcs7
|
||||
class PadderPkcs7 : public Padder<PadderPkcs7>
|
||||
{
|
||||
public:
|
||||
template<typename OutputIt>
|
||||
|
||||
Reference in New Issue
Block a user