From 42c8eaf22b371fc4ceadf9bae6e9876491859a13 Mon Sep 17 00:00:00 2001 From: Eric Severance Date: Thu, 19 Dec 2024 12:46:55 -0800 Subject: [PATCH] Update comment s/packet_id/id/ --- src/mesh/CryptoEngine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesh/CryptoEngine.cpp b/src/mesh/CryptoEngine.cpp index c88458cea..1624ab0d5 100644 --- a/src/mesh/CryptoEngine.cpp +++ b/src/mesh/CryptoEngine.cpp @@ -61,7 +61,7 @@ void CryptoEngine::clearKeys() * @param toNode The MeshPacket `to` field. * @param fromNode The MeshPacket `from` field. * @param remotePublic The remote node's Curve25519 public key. - * @param packetId The MeshPacket `packet_id` field. + * @param packetId The MeshPacket `id` field. * @param numBytes Number of bytes of plaintext in the bytes buffer. * @param bytes Buffer containing plaintext input. * @param bytesOut Output buffer to be populated with encrypted ciphertext. @@ -101,7 +101,7 @@ bool CryptoEngine::encryptCurve25519(uint32_t toNode, uint32_t fromNode, meshtas * * @param fromNode The MeshPacket `from` field. * @param remotePublic The remote node's Curve25519 public key. - * @param packetId The MeshPacket `packet_id` field. + * @param packetId The MeshPacket `id` field. * @param numBytes Number of bytes of ciphertext in the bytes buffer. * @param bytes Buffer containing ciphertext input. * @param bytesOut Output buffer to be populated with decrypted plaintext.