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

CkRc5Params() public method

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