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
b7bebcf2
Commit
b7bebcf2
authored
Dec 27, 2022
by
Josh Ji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
static temp buffer
parent
b3af23b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
10 deletions
+6
-10
src/main/java/com/josh/vku2f/IDSecret.java
src/main/java/com/josh/vku2f/IDSecret.java
+6
-10
No files found.
src/main/java/com/josh/vku2f/IDSecret.java
View file @
b7bebcf2
...
...
@@ -33,10 +33,10 @@ public class IDSecret {
private
byte
[]
scratch
;
private
final
short
SCRATCH_LENGTH
=
(
short
)
128
;
private
CBOREncoder
encoder
=
new
CBOREncoder
();
public
byte
[]
tempBuffer
=
new
byte
[
256
];
public
static
byte
[]
tempBuffer
=
new
byte
[
256
];
public
short
tempBufferLength
=
(
short
)
0
;
private
short
tempCursor
=
(
short
)
0
;
private
s
tatic
s
hort
tempCursor
=
(
short
)
0
;
public
IDSecret
(){
IDx
=
new
DomString
(
Utf8Strings
.
UTF8_NULL
,
(
short
)
Utf8Strings
.
UTF8_NULL
.
length
);
...
...
@@ -135,7 +135,7 @@ public class IDSecret {
Util
.
arrayCopy
(
inputBuffer
,
(
short
)
0
,
tempBuffer
,
offset
,
(
short
)
inputBuffer
.
length
);
}
public
void
pushTempBuffer
(
byte
[]
inputBuffer
,
short
inputOffset
,
short
inputLength
){
public
static
void
pushTempBuffer
(
byte
[]
inputBuffer
,
short
inputOffset
,
short
inputLength
){
if
((
short
)(
inputLength
+
tempCursor
)
>
(
short
)
tempBuffer
.
length
){
tempBuffer
[(
short
)(
tempBuffer
.
length
-
2
)]
=
'T'
;
// too
tempBuffer
[(
short
)(
tempBuffer
.
length
-
1
)]
=
'L'
;
// long
...
...
@@ -152,14 +152,10 @@ public class IDSecret {
*/
public
short
dump
(
byte
[]
apduBuffer
,
byte
[]
dataBuffer
,
CBOREncoder
encoder
){
encoder
.
init
(
dataBuffer
,
(
short
)
0
,
(
short
)
1200
);
encoder
.
startMap
((
short
)
2
);
encoder
.
startMap
((
short
)
1
);
// encoder.encodeTextString(Utf8Strings.UTF8_TEMP, (short)0, (short)Utf8Strings.UTF8_TEMP.length);
// encoder.encodeByteString(tempBuffer, (short)0, (short)tempBuffer.length);
encoder
.
encodeTextString
(
Utf8Strings
.
UTF8_HMAC
,
(
short
)
0
,
(
short
)
Utf8Strings
.
UTF8_HMAC
.
length
);
encoder
.
encodeByteString
(
hmac
,
(
short
)
0
,
(
short
)
hmac
.
length
);
encoder
.
encodeTextString
(
Utf8Strings
.
UTF8_ENCRYPTED_CX
,
(
short
)
0
,
(
short
)
Utf8Strings
.
UTF8_ENCRYPTED_CX
.
length
);
encoder
.
encodeByteString
(
encryptedCx
,
(
short
)
0
,
(
short
)
encryptedCx
.
length
);
encoder
.
encodeTextString
(
Utf8Strings
.
UTF8_TEMP
,
(
short
)
0
,
(
short
)
Utf8Strings
.
UTF8_TEMP
.
length
);
encoder
.
encodeByteString
(
tempBuffer
,
(
short
)
0
,
(
short
)
tempBuffer
.
length
);
return
encoder
.
getCurrentOffset
();
}
...
...
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