mirror of
https://codeberg.org/openpgp/notes.git
synced 2024-11-23 08:02:05 +01:00
finish direct key signature section
This commit is contained in:
parent
199d0bb5e8
commit
c8b417ccdb
1 changed files with 23 additions and 16 deletions
|
@ -285,13 +285,13 @@ The subpacket details are as follows:
|
||||||
- Type: `9`
|
- Type: `9`
|
||||||
- Critical: `Yes`
|
- Critical: `Yes`
|
||||||
- Value: `0x05a48fbd`
|
- Value: `0x05a48fbd`
|
||||||
- Notes: Defined as number of seconds after the key creation time.
|
- Notes: Defined as number of seconds after the key creation time
|
||||||
|
|
||||||
- [**Preferred Symmetric Ciphers for v1 SEIPD**](https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-10.html#preferred-v1-seipd)
|
- [**Preferred Symmetric Ciphers for v1 SEIPD**](https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-10.html#preferred-v1-seipd)
|
||||||
- Type: `11`
|
- Type: `11`
|
||||||
- Critical: `No`
|
- Critical: `No`
|
||||||
- Value: `0x09 0x07`
|
- Value: `0x09 0x07`
|
||||||
- Notes: Values correspond to *AES with 256-bit key* and *AES with 128-bit key*.
|
- Notes: Values correspond to *AES with 256-bit key* and *AES with 128-bit key*
|
||||||
|
|
||||||
- [**Preferred Hash Algorithms**](https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-10.html#preferred-hashes-subpacket)
|
- [**Preferred Hash Algorithms**](https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-10.html#preferred-hashes-subpacket)
|
||||||
- Type: `21`
|
- Type: `21`
|
||||||
|
@ -309,34 +309,41 @@ The subpacket details are as follows:
|
||||||
- Type: `30`
|
- Type: `30`
|
||||||
- Critical: `No`
|
- Critical: `No`
|
||||||
- Value: `0x01`
|
- Value: `0x01`
|
||||||
- Notes: Value corresponds to: *Symmetrically Encrypted Integrity Protected Data packet version 1*.
|
- Notes: Value corresponds to *Symmetrically Encrypted Integrity Protected Data packet version 1*
|
||||||
|
|
||||||
- [**Issuer Fingerprint**](https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-10.html#issuer-fingerprint-subpacket)
|
- [**Issuer Fingerprint**](https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-10.html#issuer-fingerprint-subpacket)
|
||||||
- Type: `33`
|
- Type: `33`
|
||||||
- Critical: `No`
|
- Critical: `No`
|
||||||
- Value: `aaa18cbb254685c58358320563fd37b67f3300f9fb0ec457378cd29f102698b3`
|
- Value: `aaa18cbb254685c58358320563fd37b67f3300f9fb0ec457378cd29f102698b3`
|
||||||
- Notes: This is the fingerprint of the component key that issued the signature in this packet. Note that here, the value is the primary key fingerprint of the certificate we're looking at.
|
- Notes: The fingerprint identifoes the component key that issued the signature in this packet. In this instance, the value is the primary key fingerprint of the certificate we're looking at.
|
||||||
|
|
||||||
|
The next part of this packet contains unhashed subpacket data:
|
||||||
|
|
||||||
The next part of this packet contains "unhashed subpacket data":
|
- `unhashed_area_len: 0x0000000a`: length of the following unhashed subpacket data (value: 10 bytes).
|
||||||
|
|
||||||
- `unhashed_area_len: 0x0000000a`: Length of the following unhashed subpacket data (value: 10 bytes).
|
As above, the following subpacket data consists of sets of subpacket length, subpacket type id, and data. In this case, only one subpacket follows:
|
||||||
|
|
||||||
As above, the following subpacket data consists of sets of "subpacket length, subpacket type id, data." In this case, only subpacket follows:
|
- [**Issuer Key ID**](https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-10.html#issuer-keyid-subpacket)
|
||||||
|
- Type: `16`
|
||||||
- [Issuer Key ID](https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-10.html#issuer-keyid-subpacket) (subpacket type 16): `aaa18cbb254685c5` (this is the shortened version 6 *Key ID* of the fingerprint of this certificate's primary key)
|
- Critical: `No`
|
||||||
|
- Value: `aaa18cbb254685c5`
|
||||||
|
- Notes: This is the shortened version 6 *Key ID* of the fingerprint of this certificate's primary key.
|
||||||
|
|
||||||
This concludes the unhashed subpacket data.
|
This concludes the unhashed subpacket data.
|
||||||
|
|
||||||
- `digest_prefix: 0x6747`: "The left 16 bits of the signed hash value"
|
This next section shows additional components of the Direct Key Signature packet:
|
||||||
- `salt_len, salt`: A random [salt value](https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-10.html#name-advantages-of-salted-signat) (the size must be [matching for the hash algorithm](https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-10.html#hash-algorithms-registry))
|
|
||||||
- `ed25519_sig`: [Algorithm-specific](https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-10.html#name-algorithm-specific-fields-for-ed2) representation of the signature (in this case: 64 bytes of Ed25519 signature)
|
|
||||||
|
|
||||||
The signature is calculated over a hash. The hash, in this case, is calculated over the following data (for details, see [Computing Signatures](https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-11.html#name-computing-signatures) in the RFC):
|
- `digest_prefix: 0x6747`: the left 16 bits of the signed hash value
|
||||||
|
|
||||||
- The signature's salt
|
- `salt_len, salt`: a random [salt value](https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-10.html#name-advantages-of-salted-signat) with size [matching the hash algorithm](https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-10.html#hash-algorithms-registry))
|
||||||
- A serialized form of the primary key's public data
|
|
||||||
- A serialized form of this direct key signature packet (up to, but excluding the unhashed area)
|
- `ed25519_sig`: [algorithm-specific](https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-10.html#name-algorithm-specific-fields-for-ed2) representation of the signature (here: 64 bytes of Ed25519 signature)
|
||||||
|
|
||||||
|
The signature's hash is calculated over the following data (see [Computing Signatures](https://www.ietf.org/archive/id/draft-ietf-openpgp-crypto-refresh-11.html#name-computing-signatures) in the RFC):
|
||||||
|
|
||||||
|
- signature's salt
|
||||||
|
- serialized primary key's public data
|
||||||
|
- serialized direct key signature packet (excluding the unhashed area)
|
||||||
|
|
||||||
|
|
||||||
(zoom_enc_subkey)=
|
(zoom_enc_subkey)=
|
||||||
|
|
Loading…
Reference in a new issue