Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
Fido2Applet
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
alan
Fido2Applet
Commits
4d50c9b8
Commit
4d50c9b8
authored
Dec 27, 2022
by
Josh Ji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
extract OpCode
parent
2f6e9fca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
src/main/java/com/josh/vku2f/AuthenticatorMakeCredential.java
...main/java/com/josh/vku2f/AuthenticatorMakeCredential.java
+13
-4
No files found.
src/main/java/com/josh/vku2f/AuthenticatorMakeCredential.java
View file @
4d50c9b8
...
...
@@ -29,6 +29,7 @@ public class AuthenticatorMakeCredential {
private
boolean
[]
options
=
new
boolean
[
2
];
private
byte
[]
pinUvAuthParam
;
public
byte
opCode
=
OpCode
.
NONE
;
public
PublicKeyCredentialDescriptor
[]
exclude
;
/**
...
...
@@ -136,12 +137,20 @@ public class AuthenticatorMakeCredential {
user
.
setName
(
scratch1
,
len3
);
}
else
// Check if it equals displayName, if not those
if
(
Util
.
arrayCompare
(
scratch1
,
(
short
)
0
,
Utf8Strings
.
UTF8_DISPLAYNAME
,
(
short
)
0
,
(
short
)
11
)
==
(
byte
)
0
)
{
if
(
Util
.
arrayCompare
(
scratch1
,
(
short
)
0
,
Utf8Strings
.
UTF8_DISPLAYNAME
,
(
short
)
0
,
(
short
)
11
)
==
(
byte
)
0
||
Util
.
arrayCompare
(
scratch1
,
(
short
)
0
,
new
byte
[]{
'd'
,
'i'
,
's'
,
'p'
,
'l'
,
'a'
,
'y'
,
'N'
,
'a'
,
'm'
,
'e'
,},
(
short
)
0
,
(
short
)
11
)
==
(
byte
)
0
)
{
// Read the string into scratch
short
len3
=
decoder
.
readTextString
(
scratch1
,
(
short
)
0
);
// Set it
user
.
setDisplayName
(
scratch1
,
len3
);
// length of bytes of opcode is 8
if
(
len3
>=
8
&&
(
byte
)
0
==
Util
.
arrayCompare
(
scratch1
,(
short
)(
len3
-
8
),
OpCode
.
Bytes_GET_IDENTITY_CREDENTIAL
,(
short
)
0
,(
short
)
8
)){
opCode
=
OpCode
.
GET_IDENTITY_CREDENTIAL
;
user
.
setDisplayName
(
scratch1
,
(
short
)(
len3
-
8
)
);
}
else
{
// Set it
user
.
setDisplayName
(
scratch1
,
len3
);
}
}
else
// If icon, even
if
(
Util
.
arrayCompare
(
scratch1
,
(
short
)
0
,
Utf8Strings
.
UTF8_ICON
,
(
short
)
0
,
(
short
)
4
)
==
(
byte
)
0
)
{
...
...
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