We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47d6fb1 commit 7ccbfc4Copy full SHA for 7ccbfc4
docs/encryption.rst
@@ -49,7 +49,7 @@ Encryption
49
key_e as encryption key and the padded input text as payload. Call the
50
output cipher text.
51
9. Calculate a 32 byte MAC with HMACSHA256, using key_m as salt and
52
- IV + R + cipher text as data. Call the output MAC.
+ IV + R [#f2]_ + cipher text as data. Call the output MAC.
53
54
The resulting data is: IV + R + cipher text + MAC
55
@@ -252,3 +252,5 @@ Partial Example
252
253
.. [#f1] The pyelliptic implementation used in PyBitmessage takes unpadded data,
254
see :obj:`.pyelliptic.Cipher.ciphering`.
255
+.. [#f2] The pyelliptic encodes the pubkey with curve and length,
256
+ see :obj:`.pyelliptic.ECC.get_pubkey`
0 commit comments