We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 619597e commit 2539623Copy full SHA for 2539623
ciphers/base64_encoding.py
@@ -7,7 +7,7 @@ def base64_encode(data: bytes) -> bytes:
7
The data is first transformed to binary and appended with binary digits so that its
8
length becomes a multiple of 6, then each 6 binary digits will match a character in
9
the B64_CHARSET string. The number of appended binary digits would later determine
10
- how many "=" sign should be added, the padding.
+ how many "=" signs should be added, the padding.
11
For every 2 binary digits added, a "=" sign is added in the output.
12
We can add any binary digits to make it a multiple of 6, for instance, consider the
13
following example:
0 commit comments