Class CK_RC2_CBC_PARAMS


  • public class CK_RC2_CBC_PARAMS
    extends java.lang.Object
    class CK_RC2_CBC_PARAMS provides the parameters to the CKM_RC2_CBC and CKM_RC2_CBC_PAD mechanisms.

    PKCS#11 structure:

      typedef struct CK_RC2_CBC_PARAMS {
        CK_ULONG  ulEffectiveBits;
        CK_BYTE   iv[8];
      } CK_RC2_CBC_PARAMS;
     
    Author:
    Karl Scheibelhofer (SIC), Martin Schläffer (SIC)
    • Field Summary

      Fields 
      Modifier and Type Field Description
      byte[] iv
      only the first 8 bytes will be used
      long ulEffectiveBits
      PKCS#11:
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • ulEffectiveBits

        public long ulEffectiveBits
        PKCS#11:
         CK_ULONG ulEffectiveBits;
         
      • iv

        public byte[] iv
        only the first 8 bytes will be used

        PKCS#11:

           CK_BYTE iv[8];
         
    • Constructor Detail

      • CK_RC2_CBC_PARAMS

        public CK_RC2_CBC_PARAMS()