public IEncryptionLibrary CreateCryptoObject(CryptoFactory cryptoFactory)
 {
     return(new EncryptionLibrary(cryptoFactory));
 }
예제 #2
0
 public EncryptionLibrary(CryptoFactory cryptoFactory)
 {
     _cryptoFactory = cryptoFactory;
 }