Beispiel #1
0
 public Token(string privateKey)
 {
     _aes  = new AesEncyption(privateKey + salt);
     _hash = new HashProvider();
 }
Beispiel #2
0
 public Token()
 {
     _aes  = new AesEncyption(salt);
     _hash = new HashProvider();
 }