Commit 1d32e5f2 authored by Josh Ji's avatar Josh Ji

code review

registrationData log format
parent 84f3bb29
......@@ -80,7 +80,7 @@ public class MakeCredential {
LinkedList<AttestationStatementValidator> attestationStatementValidators = new LinkedList<>();
WebAuthnManager webAuthnManager = new WebAuthnManager(attestationStatementValidators, new NullCertPathTrustworthinessValidator(), new NullSelfAttestationTrustworthinessValidator());
RegistrationData registrationData = webAuthnManager.parse(registrationRequest);
logger.info(registrationData.toString());
logger.info("registrationData {}", registrationData);
FidoUser user = userRepository.findByChallenge(registrationData.getCollectedClientData().getChallenge().toString());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment