Compare commits
5 commits
8579919f03
...
55789c7ee1
Author | SHA1 | Date | |
---|---|---|---|
55789c7ee1 | |||
|
8b9e921db7 | ||
|
2427708f97 | ||
|
8e13ac99ac | ||
|
89bb29c73a |
5 changed files with 3248 additions and 4 deletions
3241
Cargo.lock
generated
Normal file
3241
Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -592,7 +592,7 @@ impl Display for ApplicationIdentifier {
|
|||
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
||||
write!(
|
||||
f,
|
||||
"D276000124 01 {:02X} {:04X} {:04X} {:08X} 0000",
|
||||
"D276000124 {:02X} {:04X} {:04X} {:08X} 0000",
|
||||
self.application, self.version, self.manufacturer, self.serial
|
||||
)
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
name = "openpgp-card-tools"
|
||||
description = "CLI tools for OpenPGP cards"
|
||||
license = "MIT OR Apache-2.0"
|
||||
version = "0.9.0"
|
||||
version = "0.9.1"
|
||||
authors = ["Heiko Schaefer <heiko@schaefer.name>"]
|
||||
edition = "2018"
|
||||
repository = "https://gitlab.com/openpgp-card/openpgp-card"
|
||||
|
@ -41,6 +41,9 @@ subplot-build = "0.5.0"
|
|||
fehler = "1.0.0"
|
||||
subplotlib = "0.5.0"
|
||||
|
||||
[profile.release]
|
||||
codegen-units = 1
|
||||
|
||||
[features]
|
||||
default = ["sequoia-openpgp/default"]
|
||||
|
||||
|
|
|
@ -243,7 +243,7 @@ Most of the output is probably not of interest to regular users.
|
|||
$ opgpcard info
|
||||
OpenPGP card FFFE:12345678 (card version 2.0)
|
||||
|
||||
Application Identifier: D276000124 01 01 0200 FFFE 12345678 0000
|
||||
Application Identifier: D276000124 01 0200 FFFE 12345678 0000
|
||||
Manufacturer [FFFE]: Range reserved for randomly assigned serial numbers.
|
||||
|
||||
Card Capabilities:
|
||||
|
|
|
@ -105,7 +105,7 @@ then stdout, as JSON, matches embedded file info.json
|
|||
~~~{#info.json .file .json}
|
||||
{
|
||||
"card_version": "2.0",
|
||||
"application_id": "D276000124 01 01 0200 AFAF 00001234 0000",
|
||||
"application_id": "D276000124 01 0200 AFAF 00001234 0000",
|
||||
"manufacturer_id": "AFAF",
|
||||
"manufacturer_name": "Unknown",
|
||||
"card_service_data": [],
|
||||
|
|
Loading…
Reference in a new issue