Goedel.Cryptography.CryptoCatalog.GetEncryption C# (CSharp) Method

GetEncryption() public method

Get a cryptographic provider by algorithm identifier
public GetEncryption ( CryptoAlgorithmID ID ) : CryptoProviderEncryption
ID CryptoAlgorithmID Algorithm identifier
return CryptoProviderEncryption
        public CryptoProviderEncryption GetEncryption(CryptoAlgorithmID ID) {
            return Get(OrDefault(ID, AlgorithmEncryption)) as CryptoProviderEncryption;
            }