123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- #
- # Copyright 2019 The FATE Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- from Cryptodome.Cipher import AES
- from federatedml.secureprotol.symmetric_encryption.symmetric_encryption import SymmetricKey
- from federatedml.util import conversion
- class AESKey(SymmetricKey):
- """
- Note that a key cannot used for both encryption and decryption scenarios
- """
- def __init__(self, key, nonce=None):
- """
- :param key: bytes, must be 16, 24 or 32 bytes long
- """
- super(AESKey, self).__init__()
- if nonce is None:
- self.cipher_core = AES.new(key, AES.MODE_EAX)
- self.nonce = self.cipher_core.nonce # noise, generated by the encryptor, must be provided to the decryptor
- else:
- self.cipher_core = AES.new(key, AES.MODE_EAX, nonce=nonce)
- self.nonce = nonce
- class AESEncryptKey(AESKey):
- """
- AES encryption scheme
- Note that the ciphertext size is affected only by that of the plaintext, instead of the key length
- """
- def __init__(self, key):
- super(AESEncryptKey, self).__init__(key=key)
- def encrypt(self, plaintext):
- """
- :param plaintext: bytes/int/float/str
- :return: bytes
- """
- if not isinstance(plaintext, bytes):
- plaintext = self._all_to_bytes(plaintext)
- elif isinstance(plaintext, bytes):
- pass
- else:
- raise TypeError("AES encryptor supports bytes/int/float/str")
- return self.cipher_core.encrypt(plaintext)
- def get_nonce(self):
- return self.nonce
- @staticmethod
- def _all_to_bytes(message):
- """
- Convert an int/float/str to bytes, e.g., 1.65 -> b'1.65', 'hello -> b'hello'
- :param message: int/float/str
- :return: -1 if type error, otherwise str
- """
- if isinstance(message, int) or isinstance(message, float):
- return conversion.str_to_bytes(str(message))
- elif isinstance(message, str):
- return conversion.str_to_bytes(message)
- else:
- return -1
- class AESDecryptKey(AESKey):
- """
- AES decryption scheme
- """
- def __init__(self, key, nonce):
- super(AESDecryptKey, self).__init__(key=key, nonce=nonce)
- def decrypt(self, ciphertext):
- """
- :param ciphertext: bytes
- :return: str
- """
- if not isinstance(ciphertext, bytes):
- raise TypeError("AES decryptor supports bytes only")
- return conversion.bytes_to_str(self.cipher_core.decrypt(ciphertext))
|