the IV is bytes

This commit is contained in:
meejah 2019-06-24 11:41:46 -06:00
parent b7990264e8
commit f253235c96

View File

@ -19,7 +19,7 @@ from cryptography.hazmat.primitives.ciphers import (
)
DEFAULT_IV = '\x00' * 16
DEFAULT_IV = b'\x00' * 16
def create_encryptor(key, iv=None):