Exemplo n.º 1
0
 public KeyStoreScryptService(IRandomBytesGenerator randomBytesGenerator) : base(randomBytesGenerator)
 {
 }
Exemplo n.º 2
0
 public KeyStoreScryptService(IRandomBytesGenerator randomBytesGenerator, KeyStoreCrypto keyStoreCrypto) : base(
         randomBytesGenerator, keyStoreCrypto)
 {
 }
Exemplo n.º 3
0
 protected KeyStoreServiceBase(IRandomBytesGenerator randomBytesGenerator)
 {
     RandomBytesGenerator = randomBytesGenerator;
     KeyStoreCrypto       = new KeyStoreCrypto();
 }
Exemplo n.º 4
0
 public KeyStorePbkdf2Service(IRandomBytesGenerator randomBytesGenerator) : base(randomBytesGenerator)
 {
 }
Exemplo n.º 5
0
 protected KeyStoreServiceBase(IRandomBytesGenerator randomBytesGenerator, KeyStoreCrypto keyStoreCrypto)
 {
     RandomBytesGenerator = randomBytesGenerator;
     KeyStoreCrypto       = keyStoreCrypto;
 }