aboutsummaryrefslogtreecommitdiff
path: root/proto
diff options
context:
space:
mode:
authorwconner <wconner@google.com>2022-02-25 16:26:09 -0800
committerCopybara-Service <copybara-worker@google.com>2022-02-25 16:26:57 -0800
commit555eb8e89e7a19a6a0b873ac0b4fb7201b40e993 (patch)
tree9b46898b13751feab27c72001731beb718f0e17f /proto
parentcda8ddf2a6dac17b2af3e6dd6327f8e270f190db (diff)
downloadtink-555eb8e89e7a19a6a0b873ac0b4fb7201b40e993.tar.gz
Changed HPKE Internet-Draft references to its official RFC.
PiperOrigin-RevId: 431054579
Diffstat (limited to 'proto')
-rw-r--r--proto/hpke.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/hpke.proto b/proto/hpke.proto
index d33a6e47c..6ebfeea6e 100644
--- a/proto/hpke.proto
+++ b/proto/hpke.proto
@@ -49,7 +49,7 @@ message HpkePublicKey {
uint32 version = 1;
HpkeParams params = 2;
// KEM-encoding of public key (i.e., SerializePublicKey() ) as described in
- // https://www.ietf.org/archive/id/draft-irtf-cfrg-hpke-09.html#name-cryptographic-dependencies.
+ // https://www.rfc-editor.org/rfc/rfc9180.html#name-cryptographic-dependencies.
bytes public_key = 3;
}
@@ -57,7 +57,7 @@ message HpkePrivateKey {
uint32 version = 1;
HpkePublicKey public_key = 2;
// KEM-encoding of private key (i.e., SerializePrivateKey() ) as described in
- // https://www.ietf.org/archive/id/draft-irtf-cfrg-hpke-09.html#name-cryptographic-dependencies.
+ // https://www.rfc-editor.org/rfc/rfc9180.html#name-cryptographic-dependencies.
bytes private_key = 3;
}