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
603090fa
Commit
603090fa
authored
Dec 19, 2022
by
Josh Ji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplify generateExtensions()
parent
41b5001f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
13 deletions
+8
-13
src/main/java/com/josh/vku2f/IDSecret.java
src/main/java/com/josh/vku2f/IDSecret.java
+8
-13
No files found.
src/main/java/com/josh/vku2f/IDSecret.java
View file @
603090fa
...
...
@@ -101,8 +101,12 @@ public class IDSecret {
Util
.
arrayCopy
(
outputBuffer
,
(
short
)
0
,
hmac
,
(
short
)
0
,
(
short
)
32
);
}
private
short
generateExtensions
(){
// 69byte <- EXTENSIONS:10 + PRLAB:5 + HMAC:4 + hmac:32 + CX:2 + cx:16
/**
*
* @param extensionBuffer outputBuffer
* @return extension byte string length
*/
public
short
generateExtensions
(
byte
[]
extensionBuffer
){
encoder
.
init
(
tempBuffer
,
(
short
)
0
,
(
short
)
tempBuffer
.
length
);
encoder
.
startMap
((
short
)
1
);
encoder
.
encodeTextString
(
Utf8Strings
.
UTF8_PRLab
,
(
short
)
0
,
(
short
)
Utf8Strings
.
UTF8_PRLab
.
length
);
...
...
@@ -111,20 +115,11 @@ public class IDSecret {
encoder
.
encodeByteString
(
hmac
,
(
short
)
0
,
(
short
)
hmac
.
length
);
encoder
.
encodeTextString
(
Utf8Strings
.
UTF8_Cx
,
(
short
)
0
,
(
short
)
Utf8Strings
.
UTF8_Cx
.
length
);
encoder
.
encodeByteString
(
encryptedCx
,
(
short
)
0
,
(
short
)
encryptedCx
.
length
);
extensionBuffer
=
new
byte
[
encoder
.
getCurrentOffset
()];
Util
.
arrayCopy
(
tempBuffer
,
(
short
)
0
,
extensionBuffer
,
(
short
)
0
,
encoder
.
getCurrentOffset
());
return
encoder
.
getCurrentOffset
();
}
public
short
getExtensionsLength
(){
tempBufferLength
=
generateExtensions
();
return
tempBufferLength
;
}
public
short
getExtensionsByteString
(
byte
[]
outputBuffer
,
short
outputOffset
){
Util
.
arrayCopy
(
tempBuffer
,
(
short
)
0
,
outputBuffer
,
outputOffset
,
tempBufferLength
);
return
tempBufferLength
;
}
/**
*
* @param inputBuffer the buffer copy from
...
...
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