Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo.EncryptedPrivateKeyInfo C# (CSharp) Method

EncryptedPrivateKeyInfo() public method

public EncryptedPrivateKeyInfo ( AlgorithmIdentifier algId, byte encoding ) : System
algId Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier
encoding byte
return System
		public EncryptedPrivateKeyInfo(
            AlgorithmIdentifier	algId,
            byte[]				encoding)
        {
            this.algId = algId;
            this.data = new DerOctetString(encoding);
        }

Same methods

EncryptedPrivateKeyInfo::EncryptedPrivateKeyInfo ( Asn1Sequence seq ) : System