keycloak-scim/services/src/main/java/org/keycloak/WebAuthnConstants.java

81 lines
3.3 KiB
Java
Raw Normal View History

/*
* Copyright 2002-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.keycloak;
public interface WebAuthnConstants {
// Interface binded by FreeMarker template between UA and RP
String USER_ID = "userid";
String USER_NAME = "username";
String CHALLENGE = "challenge";
String ORIGIN = "origin";
String ERROR = "error";
String PUBLIC_KEY_CREDENTIAL_ID = "publicKeyCredentialId";
String CREDENTIAL_ID = "credentialId";
String CLIENT_DATA_JSON = "clientDataJSON";
String AUTHENTICATOR_DATA = "authenticatorData";
String SIGNATURE = "signature";
String USER_HANDLE = "userHandle";
String ATTESTATION_OBJECT = "attestationObject";
String AUTHENTICATOR_LABEL = "authenticatorLabel";
String RP_ENTITY_NAME = "rpEntityName";
String SIGNATURE_ALGORITHMS = "signatureAlgorithms";
String RP_ID = "rpId";
String ATTESTATION_CONVEYANCE_PREFERENCE = "attestationConveyancePreference";
String AUTHENTICATOR_ATTACHMENT = "authenticatorAttachment";
String REQUIRE_RESIDENT_KEY = "requireResidentKey";
String USER_VERIFICATION_REQUIREMENT = "userVerificationRequirement";
String CREATE_TIMEOUT = "createTimeout";
String EXCLUDE_CREDENTIAL_IDS = "excludeCredentialIds";
String ALLOWED_AUTHENTICATORS = "authenticators";
String IS_USER_IDENTIFIED = "isUserIdentified";
String USER_VERIFICATION = "userVerification";
String IS_SET_RETRY = "isSetRetry";
String SHOULD_DISPLAY_AUTHENTICATORS = "shouldDisplayAuthenticators";
// key for storing onto AuthenticationSessionModel's Attribute challenge generated by RP(keycloak)
String AUTH_CHALLENGE_NOTE = "WEBAUTH_CHALLENGE";
// option values on WebAuth API
String OPTION_REQUIRED = "required";
String OPTION_PREFERED = "preferred";
String OPTION_DISCOURAGED = "discouraged";
String OPTION_NOT_SPECIFIED = "";
/* WebAuthn events */
// Event key for credential id generated by navigator.credentials.create()
String PUBKEY_CRED_ID_ATTR = "public_key_credential_id";
// Event key for Public Key Credential's user-editable metadata
String PUBKEY_CRED_LABEL_ATTR = "public_key_credential_label";
// Event key for Public Key Credential's AAGUID
String PUBKEY_CRED_AAGUID_ATTR = "public_key_credential_aaguid";
String USER_VERIFICATION_CHECKED = "web_authn_authenticator_user_verification_checked";
String AUTHENTICATED_USER_ID = "web_authn_authenticated_user_id";
String FIRST_AUTHENTICATED_USER_ID = "first_authenticated_user_id";
String AUTH_ERR_LABEL = "web_authn_authentication_error";
String AUTH_ERR_DETAIL_LABEL = "web_authn_authentication_error_detail";
String REG_ERR_LABEL = "web_authn_registration_error";
String REG_ERR_DETAIL_LABEL = "web_authn_registration_error_detail";
}