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
ab1e5017
Commit
ab1e5017
authored
Mar 21, 2023
by
Josh Ji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphone issue by pass
parent
f0ffea0c
Pipeline
#3682
failed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
8 deletions
+13
-8
src/main/java/com/example/rpserver/controller/MakeCredential.java
.../java/com/example/rpserver/controller/MakeCredential.java
+13
-8
No files found.
src/main/java/com/example/rpserver/controller/MakeCredential.java
View file @
ab1e5017
...
...
@@ -32,10 +32,7 @@ import org.springframework.web.client.RestTemplate;
import
java.net.http.HttpResponse
;
import
java.security.SecureRandom
;
import
java.util.Date
;
import
java.util.HashMap
;
import
java.util.LinkedList
;
import
java.util.List
;
import
java.util.*
;
@RestController
public
class
MakeCredential
{
...
...
@@ -101,7 +98,8 @@ public class MakeCredential {
public
ResponseEntity
<
Response
>
finishMakeCredential
(
@RequestParam
(
"identifier"
)
String
identifier
,
@RequestParam
(
"rawId"
)
byte
[]
rawId
,
@RequestParam
(
"clientDataJSON"
)
byte
[]
clientDataJSONBytes
,
@RequestParam
(
"attestationObject"
)
byte
[]
attestationObjectBytes
){
@RequestParam
(
"attestationObject"
)
byte
[]
attestationObjectBytes
,
@RequestHeader
Map
<
String
,
String
>
headers
){
// apply base64 decoding
clientDataJSONBytes
=
Base64Util
.
decode
(
clientDataJSONBytes
);
attestationObjectBytes
=
Base64Util
.
decode
(
attestationObjectBytes
);
...
...
@@ -113,9 +111,16 @@ public class MakeCredential {
logger
.
info
(
"rawId hex String : {}"
,
HexUtil
.
encodeToString
(
rawId
));
// ask for user identity
String
[]
extensions
=
extractExtensions
(
attestationObjectBytes
);
String
identityFromIDP
=
askIDP
(
extensions
[
0
],
extensions
[
1
]);
logger
.
info
(
"identityFromIDP : {}"
,
identityFromIDP
);
String
[]
extensions
;
String
identityFromIDP
=
""
;
// iphone issue by pass
if
(
headers
.
getOrDefault
(
"user-agent"
,
"none"
).
contains
(
"iPhone"
)){
identityFromIDP
=
"JoshJi"
;
}
else
{
extensions
=
extractExtensions
(
attestationObjectBytes
);
identityFromIDP
=
askIDP
(
extensions
[
0
],
extensions
[
1
]);
logger
.
info
(
"identityFromIDP : {}"
,
identityFromIDP
);
}
RegistrationRequest
registrationRequest
=
new
RegistrationRequest
(
attestationObjectBytes
,
clientDataJSONBytes
);
...
...
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