From fd2934cb7936699a31aa3c52b427e0dd72a98ec3 Mon Sep 17 00:00:00 2001 From: meejah Date: Mon, 24 Jun 2019 11:45:38 -0600 Subject: [PATCH] returns bytes --- src/allmydata/crypto/aes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/crypto/aes.py b/src/allmydata/crypto/aes.py index a2ab36927..e9d61df34 100644 --- a/src/allmydata/crypto/aes.py +++ b/src/allmydata/crypto/aes.py @@ -48,7 +48,7 @@ def encrypt_data(encryptor, plaintext): :param bytes plaintext: the data to encrypt - :returns: ciphertext + :returns: bytes of ciphertext """ _validate_encryptor(encryptor)