Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
PassportApplet
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
PassportApplet
Commits
574170ce
Commit
574170ce
authored
Nov 21, 2022
by
Josh Ji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add ShareName.java, delete getSecret() in SharePIN.java
add byte[] birthDay,expiryDay in PassportApplet.java
parent
403136aa
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
46 additions
and
10 deletions
+46
-10
src/main/java/josh/passport/PassportApplet.java
src/main/java/josh/passport/PassportApplet.java
+38
-8
src/main/java/josh/passport/ShareName.java
src/main/java/josh/passport/ShareName.java
+8
-0
src/main/java/josh/passport/SharePIN.java
src/main/java/josh/passport/SharePIN.java
+0
-2
No files found.
src/main/java/josh/passport/PassportApplet.java
View file @
574170ce
...
...
@@ -40,7 +40,7 @@ import javacardx.crypto.Cipher;
*
* @version $Revision$
*/
public
class
PassportApplet
extends
Applet
implements
ISO7816
,
SharePIN
{
public
class
PassportApplet
extends
Applet
implements
ISO7816
,
SharePIN
,
ShareName
{
static
byte
volatileState
[];
static
byte
persistentState
;
...
...
@@ -139,6 +139,8 @@ public class PassportApplet extends Applet implements ISO7816, SharePIN {
private
byte
[]
ssc
;
private
byte
[]
documentNumber
;
private
byte
[]
birthDay
;
private
byte
[]
expiryDay
;
private
FileSystem
fileSystem
;
...
...
@@ -550,6 +552,12 @@ public class PassportApplet extends Applet implements ISO7816, SharePIN {
(
short
)
0
,
docNumberLength
);
documentNumber
[
docNumberLength
]
=
PassportInit
.
checkDigit
(
documentNumber
,(
short
)
0
,
docNumberLength
);
birthDay
=
new
byte
[
birthLength
];
Util
.
arrayCopyNonAtomic
(
buffer
,
birthOffset
,
birthDay
,
(
short
)
0
,
birthLength
);
expiryDay
=
new
byte
[
expiryLength
];
Util
.
arrayCopyNonAtomic
(
buffer
,
expiryOffset
,
expiryDay
,
(
short
)
0
,
expiryLength
);
short
keySeed_offset
=
passportInit
.
computeKeySeed
(
buffer
,
docNumberOffset
,
docNumberLength
,
birthOffset
,
birthLength
,
expiryOffset
,
expiryLength
);
...
...
@@ -1109,15 +1117,14 @@ public class PassportApplet extends Applet implements ISO7816, SharePIN {
}
byte
[]
sharedPIN
=
new
byte
[]{
't'
,
'e'
,
's'
,
't'
,
'p'
,
'i'
,
'n'
,};
final
short
sharedSecret
=
(
short
)
87
;
byte
[]
sharedPIN
;
@Override
public
Shareable
getShareableInterfaceObject
(
AID
aid
,
byte
b
)
{
if
(
aid
.
equals
(
new
byte
[]{(
byte
)
0xa0
,(
byte
)
0x00
,(
byte
)
0x00
,(
byte
)
0x06
,(
byte
)
0x47
,(
byte
)
0x2f
,(
byte
)
0x00
,(
byte
)
0x01
},
(
short
)
0
,
(
byte
)
0
)){
return
this
;
}
return
this
;
return
null
;
}
@Override
...
...
@@ -1129,12 +1136,35 @@ public class PassportApplet extends Applet implements ISO7816, SharePIN {
@Override
public
short
getSharedPIN
(
byte
[]
apduBuffer
,
short
offset
)
{
Util
.
arrayCopy
(
sharedPIN
,
(
short
)
0
,
apduBuffer
,
offset
,
(
short
)
sharedPIN
.
length
);
return
(
short
)
sharedPIN
.
length
;
if
(
sharedPIN
!=
null
)
{
Util
.
arrayCopy
(
sharedPIN
,
(
short
)
0
,
apduBuffer
,
offset
,
(
short
)
sharedPIN
.
length
);
return
(
short
)(
offset
+
sharedPIN
.
length
);
}
else
{
if
(
birthDay
!=
null
&&
birthDay
.
length
!=
0
)
{
sharedPIN
=
new
byte
[
birthDay
.
length
];
Util
.
arrayCopy
(
birthDay
,
(
short
)
0
,
sharedPIN
,
(
short
)
0
,
(
short
)
birthDay
.
length
);
Util
.
arrayCopy
(
sharedPIN
,
(
short
)
0
,
apduBuffer
,
offset
,
(
short
)
sharedPIN
.
length
);
return
(
short
)
(
offset
+
sharedPIN
.
length
);
}
else
{
return
(
short
)
-
1
;
}
}
}
@Override
public
void
setName
(
byte
[]
apduBuffer
,
short
offset
,
short
length
)
{
// ICAO 9303 part 10, DG1 TD3 format, field:"Name of holder" offset:5 length:39
if
(
length
<
(
short
)
39
)
Util
.
arrayCopy
(
apduBuffer
,
offset
,
fileSystem
.
getFile
(
FileSystem
.
EF_DG1_FID
),
(
short
)
5
,
length
);
else
Util
.
arrayCopy
(
apduBuffer
,
offset
,
fileSystem
.
getFile
(
FileSystem
.
EF_DG1_FID
),
(
short
)
5
,
(
short
)
39
);
}
@Override
public
short
getSecret
()
{
return
sharedSecret
;
public
short
getName
(
byte
[]
apduBuffer
,
short
offset
)
{
// ICAO 9303 part 10, DG1 TD3 format, field:"Name of holder" offset:5 length:39
Util
.
arrayCopy
(
fileSystem
.
getFile
(
FileSystem
.
EF_DG1_FID
),
(
short
)
5
,
apduBuffer
,
offset
,
(
short
)
39
);
return
(
short
)(
offset
+
39
);
}
}
src/main/java/josh/passport/ShareName.java
0 → 100644
View file @
574170ce
package
josh.passport
;
import
javacard.framework.Shareable
;
public
interface
ShareName
extends
Shareable
{
void
setName
(
byte
[]
apduBuffer
,
short
offset
,
short
length
);
short
getName
(
byte
[]
apduBuffer
,
short
offset
);
}
src/main/java/josh/passport/SharePIN.java
View file @
574170ce
...
...
@@ -5,6 +5,4 @@ import javacard.framework.Shareable;
public
interface
SharePIN
extends
Shareable
{
void
setSharedPIN
(
byte
[]
apduBuffer
,
short
offset
,
short
length
);
short
getSharedPIN
(
byte
[]
apduBuffer
,
short
offset
);
short
getSecret
();
}
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