com.pax.dal.entity

Enum EPedKeyType

  • java.lang.Object
    • java.lang.Enum<EPedKeyType>
      • com.pax.dal.entity.EPedKeyType
  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<EPedKeyType>


    public enum EPedKeyType
    extends java.lang.Enum<EPedKeyType>
    密钥类型定义
    ped key type
    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      AES_PPAD_TPK
      AES_PPAD
      AES_TAK
      AES TAK
      AES TAK
      AES_TCHDK
      AES TCHDK
      AES TCHDK
      AES_TIK
      AES TIK
      AES TIK
      AES_TMK
      AES TMK
      AES TMK
      AES_TPK
      AES TPK
      AES TPK
      FACE_TDK
      FACE_TDK
      PED_AES_TDK
      AES 密钥
      AES key
      PED_TIDK
      PED_TIDK
      PED_TM1K
      PED_TM1K
      PPAD_TMK
      PPAD_TPK
      PPAD_TPK
      PPAD_TPK
      SECURE_DATA
      SECURE_DATA
      SM2_PUB_KEY
      发散SM2的公钥
      SM2 public key
      SM2_PVT_KEY
      发散SM2的私钥
      SM2 private key
      SM4_FACE_TDK
      SM4_FACE_TDK
      SM4_TAK
      SM4 TAK
      SM4 TAK
      SM4_TCHDK
      SM4_TCHDK
      SM4_TDK
      SM4 TDK
      SM4 TDK
      SM4_TMK
      SM4 TMK
      SM4 TMK
      SM4_TPK
      SM4 TPK
      SM4 TPK
      TAESK
      AES 密钥
      AES key
      TAK
      用于应用报文通讯中,计算MAC
      Transaction Mac Key
      TDK
      用于对应用中敏感数据进行DES/TDES加密传输或存储
      Terminal Des Key
      TIK
      DUKPT Key
      TLK
      收单行或POS运营商的私有密钥,由收单行或者POS运营商在安全环境下直接写入
      Terminal Loading Key
      TMK
      终端主密钥,或者称为收单行主密钥
      Terminal Master Key
      TPK
      用于应用输入PIN后,计算PIN Block
      Transaction PIN Key
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      byte getPedkeyType() 
      static EPedKeyType valueOf(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static EPedKeyType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Method Detail

      • values

        public static EPedKeyType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (EPedKeyType c : EPedKeyType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EPedKeyType valueOf(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null