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
Josh Ji
Fido2Applet
Commits
eeed0b34
Commit
eeed0b34
authored
Nov 05, 2023
by
Josh Ji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
file encodings, remove unused memory claim
parent
7d4f5d78
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
12 deletions
+6
-12
.idea/encodings.xml
.idea/encodings.xml
+2
-1
src/main/java/com/josh/vku2f/AuthenticatorMakeCredential.java
...main/java/com/josh/vku2f/AuthenticatorMakeCredential.java
+0
-6
src/main/java/com/josh/vku2f/CTAP2.java
src/main/java/com/josh/vku2f/CTAP2.java
+4
-4
src/main/java/com/josh/vku2f/ClientPINCommand.java
src/main/java/com/josh/vku2f/ClientPINCommand.java
+0
-1
No files found.
.idea/encodings.xml
View file @
eeed0b34
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"Encoding"
>
<file
url=
"file://$PROJECT_DIR$/src/main/java/com/josh/vku2f/CTAP2.java"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/src/main/java/com/josh/vku2f/CTAP2.java"
charset=
"x-windows-950"
/>
<file
url=
"file://$PROJECT_DIR$/src/main/java/com/josh/vku2f/IDSecret.java"
charset=
"US-ASCII"
/>
</component>
</project>
\ No newline at end of file
src/main/java/com/josh/vku2f/AuthenticatorMakeCredential.java
View file @
eeed0b34
...
...
@@ -39,12 +39,6 @@ public class AuthenticatorMakeCredential {
* @ param vars a short array to store variables in
*/
public
AuthenticatorMakeCredential
(
CBORDecoder
decoder
)
throws
UserException
{
short
[]
vars
;
try
{
vars
=
JCSystem
.
makeTransientShortArray
((
short
)
8
,
JCSystem
.
CLEAR_ON_RESET
);
}
catch
(
Exception
e
)
{
vars
=
new
short
[
8
];
}
// Start reading, we should get a map
byte
[]
scratch1
;
try
{
...
...
src/main/java/com/josh/vku2f/CTAP2.java
View file @
eeed0b34
...
...
@@ -113,9 +113,9 @@ public class CTAP2 extends Applet implements ExtendedLength {
// 1210 bytes of a transient buffer for read-in and out
// We advertise 1200 bytes supported, but 10 bytes for protocol nonsense
try
{
dataBuffer
=
JCSystem
.
makeTransientByteArray
((
short
)
1
5
10
,
JCSystem
.
CLEAR_ON_DESELECT
);
dataBuffer
=
JCSystem
.
makeTransientByteArray
((
short
)
1
2
10
,
JCSystem
.
CLEAR_ON_DESELECT
);
}
catch
(
Exception
e
)
{
dataBuffer
=
new
byte
[
1
5
10
];
dataBuffer
=
new
byte
[
1
2
10
];
}
try
{
scratch
=
JCSystem
.
makeTransientByteArray
((
short
)
512
,
JCSystem
.
CLEAR_ON_DESELECT
);
...
...
@@ -590,7 +590,7 @@ public class CTAP2 extends Applet implements ExtendedLength {
// Read the credential details in
// Just note down where this starts for future ref
tempVars
[
0
]
+=
tempCredential
.
getAttestedData
(
dataBuffer
,
tempVars
[
0
]);
// extensions
這才是fido指定extens
ion 要放的位置a
// extensions
這才是fido指定extension 要放的位置
a
// Util.arrayCopy(extensionBuffer, (short)0, dataBuffer, tempVars[0], extensionLength);
// Attestation Statement : 0x03
...
...
@@ -623,7 +623,7 @@ public class CTAP2 extends Applet implements ExtendedLength {
cborEncoder
.
startArray
((
short
)
1
);
cborEncoder
.
encodeByteString
(
attestationKeyPair
.
x509cert
,
(
short
)
0
,
attestationKeyPair
.
x509len
);
if
(
authenticatorMakeCredential
.
opCode
==
OpCode
.
GET_IDENTITY_CREDENTIAL
){
// add extension label 這邊是暫時找個地方放
// add extension label
這邊是暫時找個地方放
cborEncoder
.
encodeTextString
(
Utf8Strings
.
UTF8_EXTENSIONS
,
(
short
)
0
,
(
short
)
Utf8Strings
.
UTF8_EXTENSIONS
.
length
);
// add extension element
cborEncoder
.
startArray
((
short
)
2
);
...
...
src/main/java/com/josh/vku2f/ClientPINCommand.java
View file @
eeed0b34
...
...
@@ -24,7 +24,6 @@ public class ClientPINCommand {
private
byte
[]
pinHashEnc
=
new
byte
[
16
];
// byte string, aes256
private
byte
permissions
;
// unsigned int
private
byte
[]
rpId
=
new
byte
[
64
];
// text string
byte
[]
scratch
=
JCSystem
.
makeTransientByteArray
((
short
)
64
,
JCSystem
.
CLEAR_ON_RESET
);
public
void
decodeCommand
(
CBORDecoder
cborDecoder
)
throws
UserException
{
short
commandLength
=
cborDecoder
.
readMajorType
(
CBORBase
.
TYPE_MAP
);
...
...
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