public class AuthenticatorAssertionData
extends java.lang.Object
| Constructor and Description |
|---|
AuthenticatorAssertionData(com.yubico.webauthn.data.ByteArray credentialId,
com.yubico.webauthn.data.ByteArray authenticatorData,
com.yubico.webauthn.data.ByteArray signature,
com.yubico.webauthn.data.ByteArray userHandle)
Public constructor of this data class.
|
| Modifier and Type | Method and Description |
|---|---|
com.yubico.webauthn.data.ByteArray |
getAuthenticatorData()
See
constructor for a description of this field. |
com.yubico.webauthn.data.ByteArray |
getCredentialId()
See
constructor for a description of this field. |
com.yubico.webauthn.data.ByteArray |
getSignature()
See
constructor for a description of this field. |
com.yubico.webauthn.data.ByteArray |
getUserHandle()
See
constructor for a description of this field. |
void |
setCredentialId(com.yubico.webauthn.data.ByteArray credentialId)
Set the credential id to some new value.
|
public AuthenticatorAssertionData(com.yubico.webauthn.data.ByteArray credentialId,
com.yubico.webauthn.data.ByteArray authenticatorData,
com.yubico.webauthn.data.ByteArray signature,
com.yubico.webauthn.data.ByteArray userHandle)
credentialId - The id of the credential that was used to create the assertion.authenticatorData - The authenticator data created in the process.signature - The assertion signature produced in the process.userHandle - The user handle of the user this credential belongs to.public com.yubico.webauthn.data.ByteArray getCredentialId()
constructor for a description of this field.public void setCredentialId(com.yubico.webauthn.data.ByteArray credentialId)
credentialId - The credential id used for this asseriton.public com.yubico.webauthn.data.ByteArray getAuthenticatorData()
constructor for a description of this field.public com.yubico.webauthn.data.ByteArray getSignature()
constructor for a description of this field.public com.yubico.webauthn.data.ByteArray getUserHandle()
constructor for a description of this field.