algos_sig: use chacha instead of rc4 for padding

This commit is contained in:
Mirek Kratochvil 2014-04-09 15:51:58 +02:00
parent 5c739804fd
commit eae6fe5675

View file

@ -20,7 +20,7 @@
#include "fmtseq.h" #include "fmtseq.h"
#include "hash.h" #include "hash.h"
#include "arcfour.h" #include "chacha.h"
/* /*
* DISCUSSION. * DISCUSSION.
@ -55,7 +55,7 @@
#define MIN(a,b) ((a)<(b)?(a):(b)) #define MIN(a,b) ((a)<(b)?(a):(b))
typedef arcfour<byte, 8, 256> padding_generator; typedef chacha20 padding_generator;
static void msg_pad (const bvector&in, std::vector<byte>&out, size_t minsize) static void msg_pad (const bvector&in, std::vector<byte>&out, size_t minsize)
{ {