public KeyStoreScryptService(IRandomBytesGenerator randomBytesGenerator) : base(randomBytesGenerator)
 {
 }
 public KeyStoreScryptService(IRandomBytesGenerator randomBytesGenerator, KeyStoreCrypto keyStoreCrypto) : base(
         randomBytesGenerator, keyStoreCrypto)
 {
 }
示例#3
0
 protected KeyStoreServiceBase(IRandomBytesGenerator randomBytesGenerator)
 {
     RandomBytesGenerator = randomBytesGenerator;
     KeyStoreCrypto       = new KeyStoreCrypto();
 }
示例#4
0
 public KeyStorePbkdf2Service(IRandomBytesGenerator randomBytesGenerator) : base(randomBytesGenerator)
 {
 }
示例#5
0
 protected KeyStoreServiceBase(IRandomBytesGenerator randomBytesGenerator, KeyStoreCrypto keyStoreCrypto)
 {
     RandomBytesGenerator = randomBytesGenerator;
     KeyStoreCrypto       = keyStoreCrypto;
 }