From e10aba295a85a51f185bc655c95676193541f0f8 Mon Sep 17 00:00:00 2001 From: xtaci Date: Wed, 17 Jul 2024 14:24:19 +0800 Subject: [PATCH] fix a comment typo --- qpp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qpp.go b/qpp.go index 06c37a4..44ad020 100644 --- a/qpp.go +++ b/qpp.go @@ -42,7 +42,7 @@ type QuantumPermutationPad struct { pads []byte // Encryption pads, each pad is a permutation matrix for encryption rpads []byte // Decryption pads, each pad is a reverse permutation matrix for decryption padsPtr uintptr // raw pointer to encryption pads - rpadsPtr uintptr // raw pointer to encryption pads + rpadsPtr uintptr // raw pointer to decryption pads numPads uint16 // Number of pads (permutation matrices) encRand *Rand // Default random source for encryption pad selection