-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: v0.1.7 | Improve EAC schema, support for PA
- Loading branch information
Showing
11 changed files
with
177 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export * as EAC from "./eac" | ||
export * as PKD from "./pkd" | ||
export * as SOD from "./sod" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/** BSI TR-03110. Terminal authentication */ | ||
export const TerminalAuthentication = "0.4.0.127.0.7.2.2.2" | ||
|
||
/** BSI TR-03110. Chip authentication */ | ||
export enum ChipAuthDomainParameters { | ||
CA_DH = "0.4.0.127.0.7.2.2.3.1", | ||
CA_ECDH = "0.4.0.127.0.7.2.2.3.2" | ||
} | ||
|
||
/** BSI TR-03110. Chip authentication */ | ||
export enum ChipAuthPublicKey { | ||
PK_DH = "0.4.0.127.0.7.2.2.1.1", | ||
PK_ECDH = "0.4.0.127.0.7.2.2.1.2", | ||
} | ||
|
||
/** BSI TR-03110. Chip authentication */ | ||
export enum ChipAuthInfo { | ||
CA_DH_3DES_CBC_CBC = "0.4.0.127.0.7.2.2.3.1.1", | ||
CA_DH_AES_CBC_CMAC_128 = "0.4.0.127.0.7.2.2.3.1.2", | ||
CA_DH_AES_CBC_CMAC_192 = "0.4.0.127.0.7.2.2.3.1.3", | ||
CA_DH_AES_CBC_CMAC_256 = "0.4.0.127.0.7.2.2.3.1.4", | ||
CA_ECDH_3DES_CBC_CBC = "0.4.0.127.0.7.2.2.3.2.1", | ||
CA_ECDH_AES_CBC_CMAC_128 = "0.4.0.127.0.7.2.2.3.2.2", | ||
CA_ECDH_AES_CBC_CMAC_192 = "0.4.0.127.0.7.2.2.3.2.3", | ||
CA_ECDH_AES_CBC_CMAC_256 = "0.4.0.127.0.7.2.2.3.2.4", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters