Created
August 19, 2013 17:48
-
-
Save MichaelAquilina/6271987 to your computer and use it in GitHub Desktop.
PKCS7 Padding in python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def _pad(text, block_size): | |
""" | |
Performs padding on the given plaintext to ensure that it is a multiple | |
of the given block_size value in the parameter. Uses the PKCS7 standard | |
for performing padding. | |
""" | |
no_of_blocks = math.ceil(len(text)/float(block_size)) | |
pad_value = int(no_of_blocks * block_size - len(text)) | |
if pad_value == 0: | |
return text + chr(block_size) * block_size | |
else: | |
return text + chr(pad_value) * pad_value |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
why just not use: