예제 #1
0
 def test_decode_aes256_ecb_base64_decodes_a_long_string(self):
     self.assertEqual(
         parser.decode_aes256_ecb_base64(
             'BNhd3Q3ZVODxk9c0C788NUPTIfYnZuxXfkghtMJ8jVM=',
             self.encryption_key), b'All your base are belong to us')
예제 #2
0
 def test_decode_aes256_ecb_base64_decodes_a_short_string(self):
     self.assertEqual(
         parser.decode_aes256_ecb_base64('8mHxIA8rul6eq72a/Gq2iw==',
                                         self.encryption_key),
         b'0123456789')
예제 #3
0
 def test_decode_aes256_ecb_base64_decodes_a_blank_string(self):
     self.assertEqual(
         parser.decode_aes256_ecb_base64('', self.encryption_key), b'')
예제 #4
0
 def test_decode_aes256_ecb_base64_decodes_a_long_string(self):
     self.assertEqual(parser.decode_aes256_ecb_base64(
         'BNhd3Q3ZVODxk9c0C788NUPTIfYnZuxXfkghtMJ8jVM=', self.encryption_key),
         b'All your base are belong to us')
예제 #5
0
 def test_decode_aes256_ecb_base64_decodes_a_short_string(self):
     self.assertEqual(parser.decode_aes256_ecb_base64(
         '8mHxIA8rul6eq72a/Gq2iw==', self.encryption_key),
         b'0123456789')
예제 #6
0
 def test_decode_aes256_ecb_base64_decodes_a_blank_string(self):
     self.assertEqual(parser.decode_aes256_ecb_base64(
         '', self.encryption_key),
         b'')