Test the Mosh crypto layer

This commit is contained in:
Keegan McAllister
2012-03-28 04:53:11 -04:00
committed by Keith Winstein
parent d1c4b0a5d7
commit c354a69ee6
7 changed files with 159 additions and 2 deletions
+6
View File
@@ -78,6 +78,12 @@ class PRNG {
fill( &x, 4 );
return x;
}
uint64_t uint64() {
uint64_t x;
fill( &x, 8 );
return x;
}
};
#endif