コード例 #1
0
 def test_hash_md5(self):
     """
     Verify that md5 hashes are being computed correctly.
     """
     md5_bytes = hash_md5('test')
     self.assertEqual(md5_bytes.encode('hex'),
                      '098f6bcd4621d373cade4e832627b4f6')
コード例 #2
0
 def test_hash_md5(self):
     """
     Verify that md5 hashes are being computed correctly.
     """
     md5_bytes = hash_md5("test")
     self.assertEqual(md5_bytes.encode("hex"),
                      "098f6bcd4621d373cade4e832627b4f6")
コード例 #3
0
    def test_encrypt_text_aes(self):
        """
        Verify that the ciphertext is actually decryptable.

        Note that just because this passes doesn't mean everything is necessarily 
        working, as in production the actual decryption is done in JavaScript.
        """
        text = 'some text to encrypt'
        password = '******'
        
        iv_b64, ciphertext_b64, padding_char = encrypt_text_aes(text, password)
        
        cipher = AES.new(hash_md5(password), AES.MODE_CBC, base64.b64decode(iv_b64))
        plaintext = cipher.decrypt(base64.b64decode(ciphertext_b64))

        self.assertEqual(plaintext.decode('utf-8').rstrip(padding_char), text)
コード例 #4
0
    def test_encrypt_text_aes(self):
        """
        Verify that the ciphertext is actually decryptable.

        Note that just because this passes doesn't mean everything is necessarily 
        working, as in production the actual decryption is done in JavaScript.
        """
        text = 'some text to encrypt'
        password = '******'

        iv_b64, ciphertext_b64, padding_char = encrypt_text_aes(text, password)

        cipher = AES.new(hash_md5(password), AES.MODE_CBC,
                         base64.b64decode(iv_b64))
        plaintext = cipher.decrypt(base64.b64decode(ciphertext_b64))

        self.assertEqual(plaintext.decode('utf-8').rstrip(padding_char), text)
コード例 #5
0
 def test_hash_md5(self):
     """
     Verify that md5 hashes are being computed correctly.
     """
     md5_bytes = hash_md5('test')
     self.assertEqual(md5_bytes.encode('hex'), '098f6bcd4621d373cade4e832627b4f6')