Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
RPServer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Josh Ji
RPServer
Commits
1d4efe0f
Commit
1d4efe0f
authored
Dec 15, 2022
by
Josh Ji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
logger.debug -> logger.info
parent
e8642413
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
src/main/java/com/example/rpserver/controller/MakeCredential.java
.../java/com/example/rpserver/controller/MakeCredential.java
+8
-8
No files found.
src/main/java/com/example/rpserver/controller/MakeCredential.java
View file @
1d4efe0f
...
...
@@ -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
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment