OpenSSL.HMAC.HMAC C# (CSharp) Method

HMAC() public method

public HMAC ( MDType type ) : System
type MDType
return System
        public HMAC(MDType type)
        {
            this._type = type;
            this._md   = MD.GetMD(this._type);

            if (this._md == null)
                throw new EVPException();
        }