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

GetAsymmetric() public method

Get a cryptographic provider by algorithm identifier
public GetAsymmetric ( CryptoAlgorithmID ID ) : CryptoProviderAsymmetric
ID CryptoAlgorithmID Algorithm identifier
return CryptoProviderAsymmetric
        public CryptoProviderAsymmetric GetAsymmetric(CryptoAlgorithmID ID) {
            var Result = Get(ID);
            return Result as CryptoProviderAsymmetric;
            }