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