From ccecb07eefc3bad5fa3c3c9d9c1e198e6c1a5b1c Mon Sep 17 00:00:00 2001 From: Quim Muntal Date: Mon, 4 Sep 2023 10:06:23 +0200 Subject: [PATCH] Update ed25519.go Co-authored-by: Davis Goodin --- ed25519.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ed25519.go b/ed25519.go index 62f3ed3d..4b83469c 100644 --- a/ed25519.go +++ b/ed25519.go @@ -12,13 +12,13 @@ import ( ) const ( - // publicKeySize is the size, in bytes, of public keys as used in crypto/ed25519. + // publicKeySizeEd25519 is the size, in bytes, of public keys as used in crypto/ed25519. publicKeySizeEd25519 = 32 - // privateKeySize is the size, in bytes, of private keys as used in crypto/ed25519. + // privateKeySizeEd25519 is the size, in bytes, of private keys as used in crypto/ed25519. privateKeySizeEd25519 = 64 - // signatureSize is the size, in bytes, of signatures generated and verified by crypto/ed25519. + // signatureSizeEd25519 is the size, in bytes, of signatures generated and verified by crypto/ed25519. signatureSizeEd25519 = 64 - // seedSize is the size, in bytes, of private key seeds. These are the private key representations used by RFC 8032. + // seedSizeEd25519 is the size, in bytes, of private key seeds. These are the private key representations used by RFC 8032. seedSizeEd25519 = 32 )