|
@@ -5,34 +5,34 @@
|
|
|
#include "aes.hpp"
|
|
|
#include "prg.hpp"
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
-void rdpf_gen(MPCTIO &tio, yield_t &yield,
|
|
|
- RDPF &rdpf, nbits_t depth)
|
|
|
+RDPF::RDPF(MPCTIO &tio, yield_t &yield,
|
|
|
+ RegXS target, nbits_t depth)
|
|
|
{
|
|
|
int player = tio.player();
|
|
|
+ size_t &aesops = tio.aes_ops();
|
|
|
|
|
|
|
|
|
- DPFnode seed;
|
|
|
arc4random_buf(&seed, sizeof(seed));
|
|
|
|
|
|
seed = set_lsb(seed, !!player);
|
|
|
printf("seed: "); for(int i=0;i<16;++i) { printf("%02x", ((unsigned char *)&seed)[15-i]); } printf("\n");
|
|
|
- rdpf.seed = seed;
|
|
|
|
|
|
AESkey prgkey;
|
|
|
__m128i key = _mm_set_epi64x(314159265, 271828182);
|
|
|
AES_128_Key_Expansion(prgkey, key);
|
|
|
__m128i left, right;
|
|
|
- AES_ECB_encrypt(left, set_lsb(seed, 0), prgkey);
|
|
|
- AES_ECB_encrypt(right, set_lsb(seed, 1), prgkey);
|
|
|
+ AES_ECB_encrypt(left, set_lsb(seed, 0), prgkey, aesops);
|
|
|
+ AES_ECB_encrypt(right, set_lsb(seed, 1), prgkey, aesops);
|
|
|
|
|
|
__m128i nleft, nright, oleft, oright;
|
|
|
- prg(nleft, seed, 0);
|
|
|
- prg(nright, seed, 1);
|
|
|
- prgboth(oleft, oright, seed);
|
|
|
+ prg(nleft, seed, 0, aesops);
|
|
|
+ prg(nright, seed, 1, aesops);
|
|
|
+ prgboth(oleft, oright, seed, aesops);
|
|
|
printf("left : "); for(int i=0;i<16;++i) { printf("%02x", ((unsigned char *)&left)[15-i]); } printf("\n");
|
|
|
printf("nleft: "); for(int i=0;i<16;++i) { printf("%02x", ((unsigned char *)&nleft)[15-i]); } printf("\n");
|
|
|
printf("oleft: "); for(int i=0;i<16;++i) { printf("%02x", ((unsigned char *)&oleft)[15-i]); } printf("\n");
|