Esempio n. 1
0
 def block_encrypt(self, plaintext):
     """Return the deterministically preencrypted word."""
     return crypto.encrypt(self.keys['encrypt'], plaintext)
Esempio n. 2
0
 def test_block_encrypt(self):
     key = self.keys['foo']
     message = b"7" * constants.BLOCK_BYTES
     ciphertext = crypto.encrypt(key, message)
     assert crypto.decrypt(key, ciphertext) == message
Esempio n. 3
0
 def block_encrypt(self, plaintext):
     """Return the deterministically preencrypted word."""
     return crypto.encrypt(self.keys['encrypt'], plaintext)