Exemplo n.º 1
0
 public Salsa20Expansion(byte[] key, byte[] nonce, int rounds)
 {
     Key = key;
     Nonce = nonce;
     Salsa = new Salsa20Hash(rounds);
 }
Exemplo n.º 2
0
 public Salsa20Expansion(byte[] key, byte[] nonce, int rounds)
 {
     Key   = key;
     Nonce = nonce;
     Salsa = new Salsa20Hash(rounds);
 }
Exemplo n.º 3
0
 public Salsa20Expansion(byte[] key, byte[] nonce)
 {
     Key = key;
     Nonce = nonce;
     Salsa = new Salsa20Hash();
 }
Exemplo n.º 4
0
 public Salsa20Expansion(byte[] key, byte[] nonce)
 {
     Key   = key;
     Nonce = nonce;
     Salsa = new Salsa20Hash();
 }