Goedel.Cryptography.CryptoData.CryptoData C# (CSharp) Method

CryptoData() public method

Create and populate a result for a digest or MAC algorithm.
public CryptoData ( CryptoAlgorithmID Identifier, string OID, byte Value ) : System
Identifier CryptoAlgorithmID
OID string
Value byte
return System
        public CryptoData(CryptoAlgorithmID Identifier, string OID, byte[] Value) {
            _Identifier = Identifier;
            _Integrity = Value;
            _Data = null;
            _Key = null;
            _IV = null;
            _OID = OID;
            _CryptoOperation = CryptoOperation.Unknown;
            }

Same methods

CryptoData::CryptoData ( CryptoAlgorithmID Identifier, string OID, byte Value, byte Data ) : System
CryptoData::CryptoData ( CryptoAlgorithmID Identifier, string OID, byte Integrity, byte Data, byte Key, byte IV ) : System
CryptoData