aboutsummaryrefslogtreecommitdiff
path: root/spec/ssh-protocols.md
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2023-11-14 22:10:54 +0000
committerIan Jackson <ijackson@chiark.greenend.org.uk>2023-11-14 22:14:38 +0000
commitbbb78411d39bd5e37e0e2a70dd1ff9001f427f74 (patch)
treee3bd46085c09ec87493c0806caaa20c5f78f158e /spec/ssh-protocols.md
parent89aa5c08f94dadf1cb80ac9b6e8b49caf5df3c5c (diff)
downloadtorspec-bbb78411d39bd5e37e0e2a70dd1ff9001f427f74.tar.gz
torspec-bbb78411d39bd5e37e0e2a70dd1ff9001f427f74.zip
ssh-protocols: ed25519-expanded: Correct terminology
Elsewhere we (and others) write "public _key_ data" and "private _key_ data". We should do that here.
Diffstat (limited to 'spec/ssh-protocols.md')
-rw-r--r--spec/ssh-protocols.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ssh-protocols.md b/spec/ssh-protocols.md
index 49c58d2..882611d 100644
--- a/spec/ssh-protocols.md
+++ b/spec/ssh-protocols.md
@@ -149,9 +149,9 @@ the
type *is* used in OpenSSH private key files,
for the *public* keys matching such private keys.
-The public data is `ENC(A)` ([RFC8032 3.2](https://datatracker.ietf.org/doc/html/rfc8032#section-3.2)).
+The public key data is `ENC(A)` ([RFC8032 3.2](https://datatracker.ietf.org/doc/html/rfc8032#section-3.2)).
-The private data is the 64-byte string made by concatenating:
+The private key data is the 64-byte string made by concatenating:
* `ENC(s)` as per [RFC8032 3.2](https://datatracker.ietf.org/doc/html/rfc8032#section-3.2), the actual "expanded secret key";
* `h_b || ... || h_(2b-1)` as per [RFC8032 3.3](https://datatracker.ietf.org/doc/html/rfc8032#section-3.3), the "domain separation nonce".