10 references to GenerateRandom
mscorlib (10)
system\security\cryptography\hmacmd5.cs (1)
20public HMACMD5 () : this (Utils.GenerateRandom(64)) {}
system\security\cryptography\hmacripemd160.cs (1)
20public HMACRIPEMD160 () : this (Utils.GenerateRandom(64)) {}
system\security\cryptography\hmacsha1.cs (1)
20public HMACSHA1 () : this (Utils.GenerateRandom(64)) {}
system\security\cryptography\hmacsha256.cs (1)
20public HMACSHA256 () : this (Utils.GenerateRandom(64)) {}
system\security\cryptography\hmacsha384.cs (1)
23public HMACSHA384 () : this (Utils.GenerateRandom(128)) {}
system\security\cryptography\hmacsha512.cs (1)
23public HMACSHA512 () : this (Utils.GenerateRandom(128)) {}
system\security\cryptography\rijndaelmanaged.cs (4)
60KeyValue = Utils.GenerateRandom(KeySizeValue / 8); 64IVValue = Utils.GenerateRandom(BlockSizeValue / 8); 74rgbKey = Utils.GenerateRandom(KeySizeValue / 8); 83rgbIV = Utils.GenerateRandom(BlockSizeValue / 8);