Interface AuthenticationCacheStore
public interface AuthenticationCacheStore
When a webauthn authentication request workflow starts, we need a cache store to store and pull
data from the flow.
-
Method Summary
Modifier and TypeMethodDescriptionget(com.yubico.webauthn.data.ByteArray id) voidput(com.yubico.webauthn.data.ByteArray id, AuthenticationRequest.AuthenticationRequestWithSerializable authenticationRequest) booleanremove(com.yubico.webauthn.data.ByteArray id)
-
Method Details
-
get
Optional<AuthenticationRequest.AuthenticationRequestWithSerializable> get(com.yubico.webauthn.data.ByteArray id) -
put
void put(com.yubico.webauthn.data.ByteArray id, AuthenticationRequest.AuthenticationRequestWithSerializable authenticationRequest) -
remove
boolean remove(com.yubico.webauthn.data.ByteArray id)
-