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

logger.debug -> logger.info

parent e8642413
......@@ -79,7 +79,7 @@ public class MakeCredential {
null);
logger.debug("PublicKeyCredentialCreationOptions : {}", options);
logger.info("PublicKeyCredentialCreationOptions : {}", options);
FidoUser fidoUser = new FidoUser(userIdBytes, challenge.toString(), username);
userRepository.save(fidoUser);
......@@ -99,9 +99,9 @@ public class MakeCredential {
rawId = Base64Util.decode(rawId);
// logger
logger.debug("clientDataJson : {}", new String(clientDataJSONBytes));
logger.debug("attestationObject hex String : {}", HexUtil.encodeToString(attestationObjectBytes));
logger.debug("rawId hex String : {}", HexUtil.encodeToString(rawId));
logger.info("clientDataJson : {}", new String(clientDataJSONBytes));
logger.info("attestationObject hex String : {}", HexUtil.encodeToString(attestationObjectBytes));
logger.info("rawId hex String : {}", HexUtil.encodeToString(rawId));
// ask for user identity
String[] extensions = extractExtensions(attestationObjectBytes);
......@@ -113,7 +113,7 @@ public class MakeCredential {
LinkedList<AttestationStatementValidator> attestationStatementValidators = new LinkedList<>();
WebAuthnManager webAuthnManager = new WebAuthnManager(attestationStatementValidators, new NullCertPathTrustworthinessValidator(), new NullSelfAttestationTrustworthinessValidator());
RegistrationData registrationData = webAuthnManager.parse(registrationRequest);
logger.debug("registrationData {}", registrationData);
logger.info("registrationData {}", registrationData);
FidoUser user = userRepository.findByChallenge(registrationData.getCollectedClientData().getChallenge().toString());
......@@ -134,15 +134,15 @@ public class MakeCredential {
try {
co.nstant.in.cbor.model.Map attestationObjectCbor = (co.nstant.in.cbor.model.Map) CborDecoder.decode(attestationObjectBytes).get(0);
for (DataItem key : attestationObjectCbor.getKeys())
logger.debug("first layer keys : {} : ", key);
logger.info("first layer keys : {} : ", key);
co.nstant.in.cbor.model.Map attestationStatement = (co.nstant.in.cbor.model.Map) attestationObjectCbor.get(new UnicodeString("attStmt"));
for (DataItem key : attestationStatement.getKeys())
logger.debug("keys under attStmt node : {}", key);
logger.info("keys under attStmt node : {}", key);
List<DataItem> extensions = ((Array) attestationStatement.get(new UnicodeString("extensions"))).getDataItems();
for (DataItem item : extensions)
logger.debug("extensions : {}", item);
logger.info("extensions : {}", item);
byte[][] extensionSendsOut = new byte[2][];
extensionSendsOut[0] = ((ByteString) extensions.get(0)).getBytes();
......
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