Enum AuthenticatorAttestationType

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ATTESTATION_ANONCA
      In this case, the authenticator uses an Anonymization CA which dynamically generates per-credential attestation certificates such that the attestation statements presented to Relying Parties do not provide uniquely identifiable information, e.g., that might be used for tracking purposes.
      ATTESTATION_ATTCA
      Indicates PrivacyCA attestation as defined in [TCG-CMCProfile-AIKCertEnroll].
      ATTESTATION_BASIC_FULL
      Indicates full basic attestation, based on an attestation private key shared among a class of authenticators (e.g.
      ATTESTATION_BASIC_SURROGATE
      Just syntactically a Basic Attestation.
      ATTESTATION_ECDAA
      Indicates use of elliptic curve based direct anonymous attestation as defined in [FIDOEcdaaAlgorithm].
      ATTESTATION_NONE
      Indicates absence of attestation.
    • Method Summary

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

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

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

      • values

        public static AuthenticatorAttestationType[] 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 (AuthenticatorAttestationType c : AuthenticatorAttestationType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AuthenticatorAttestationType 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