com.yubico.fido.metadata.CtapVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webauthn-server-attestation Show documentation
Show all versions of webauthn-server-attestation Show documentation
Yubico WebAuthn attestation subsystem
The newest version!
package com.yubico.fido.metadata;
/**
* Enumeration of CTAP versions.
*
* @see Client
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)
*/
public enum CtapVersion {
/**
* @see Client
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)
*/
U2F_V2,
/**
* @see Client
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)
*/
FIDO_2_0,
/**
* @see Client
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)
*/
FIDO_2_1_PRE,
/**
* @see Client
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)
*/
FIDO_2_1;
}