Class TKTokenOperation


  • public final class TKTokenOperation
    extends java.lang.Object
    [@enum] TKTokenOperation enumerates operations which can be performed with objects (keys and certificates) on the token.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long DecryptData
      Decrypting data using private key.
      static long None  
      static long PerformKeyExchange
      Performing Diffie-Hellman style of cryptographic key exchange using private key.
      static long ReadData
      Reading of raw data of certificate.
      static long SignData
      Cryptographic signature using private key.
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • ReadData

        public static final long ReadData
        Reading of raw data of certificate.
        See Also:
        Constant Field Values
      • SignData

        public static final long SignData
        Cryptographic signature using private key.
        See Also:
        Constant Field Values
      • DecryptData

        public static final long DecryptData
        Decrypting data using private key.
        See Also:
        Constant Field Values
      • PerformKeyExchange

        public static final long PerformKeyExchange
        Performing Diffie-Hellman style of cryptographic key exchange using private key.
        See Also:
        Constant Field Values