Net.Pkcs11Interop.HighLevelAPI81.MechanismParams.CkRc5MacGeneralParams.CkRc5MacGeneralParams C# (CSharp) Method

CkRc5MacGeneralParams() public method

Initializes a new instance of the CkRc5MacGeneralParams class.
public CkRc5MacGeneralParams ( ulong wordsize, ulong rounds, ulong macLength ) : Net.Pkcs11Interop.Common
wordsize ulong Wordsize of RC5 cipher in bytes
rounds ulong Number of rounds of RC5 encipherment
macLength ulong Length of the MAC produced, in bytes
return Net.Pkcs11Interop.Common
        public CkRc5MacGeneralParams(ulong wordsize, ulong rounds, ulong macLength)
        {
            _lowLevelStruct.Wordsize = wordsize;
            _lowLevelStruct.Rounds = rounds;
            _lowLevelStruct.MacLength = macLength;
        }