コード例 #1
0
 /// <summary>
 /// Creates parameters for the CKM_AES_CTR mechanism
 /// </summary>
 /// <param name='counterBits'>The number of bits in the counter block (cb) that shall be incremented</param>
 /// <param name='cb'>Specifies the counter block (16 bytes)</param>
 /// <returns>Parameters for the CKM_AES_CTR mechanism</returns>
 public ICkAesCtrParams CreateCkAesCtrParams(ulong counterBits, byte[] cb)
 {
     return _factory.CreateCkAesCtrParams(counterBits, cb);
 }