In python, you can use the PyCrypto library. Defining some helper functions:
from Crypto.Cipher import Blowfish, AES
from Crypto import Random
def encrypt(plaintext, key, crypto_class, mode, iv=None):
block_size = crypto_class.block_size
if iv is None:
iv = Random.new().read(block_size)
cipher = crypto_class.new(key, getattr(crypto_class, mode), iv)
pad_len = block_size - (len(plaintext) % block_size)
padding = ''.join([chr(pad_len)]*pad_len)
encrypted_msg = iv + cipher.encrypt(plaintext + padding)
return encrypted_msg
def decrypt(encrypted_msg, key, crypto_class, mode):
block_size = crypto_class.block_size
iv = encrypted_msg[:block_size]
cipher = crypto_class.new(key, getattr(crypto_class,mode), iv)
padded_msg = cipher.decrypt(encrypted_msg[block_size:])
pad_len = ord(padded_msg[-1])
msg = padded_msg[:len(padded_msg)-pad_len]
return msg
def aes_ecb_encrypt(plaintext, key, iv=None):
return encrypt(plaintext, key, AES, 'MODE_ECB', iv)
def aes_ecb_decrypt(encrypted_msg, key):
return encrypt(plaintext, key, AES, 'MODE_ECB')
then you can implement like:
>>> key = "gkw3iurpamv;kj20984;asdkfjat1af\x00"
>>> iv = '\x00\x00\x00\x00\x00\x00\x00\x00\x00\xDB\x0F\x49\0x40'
>>> plaintext = "nID|fPriority|nMin|nMax\n1|0,6|4|6\n2|0,4|6|8\n"
>>> encrypted_msg = aes_ecb_encrypt(plaintext, key, iv)
>>> print repr(encrypted_msg)
'\x00xDB\x00x0F\x00x49\x00x40U\xd5\x18\x9aQu{\xd0\x89\x98\xd7\xe0S\x81\x8dI>\x96\x9d\x86\xf3\x16\xeb\x85\xe4tKRG\x16\x0cr\xde\xd8\xa4X{\xb4\xdb"W\xf4\xa0\xc2z\x08*\x1e'
>>> decrypted_msg = aes_ecb_decrypt(encrypted_msg, key)
>>> print decrypted_msg
nID|fPriority|nMin|nMax
1|0,6|4|6
2|0,4|6|8
Note the way I implemented the AES encryption was to preface the first block (which for AES is 16 bytes) of the encrypted message with the initialization vector. Note without knowing the encoding you can't decrypt your message. Also there's some issues with your initialization vector given -- it should be 16 bytes; you gave only 4 bytes in hex (a byte in is two hexadecimal characters). Similarly your encrypted message should be a multiple of the block size (16) but you gave a message that appears to be 26 chars long.
PS: I largely took this answer from one of my previous answers.
As owlstead pointed out; ECB has no need for an initialization vector as it encrypts each block independently of the result of the previous block; unlike say MODE_CBC which uses the result of the previous block. The only reason I wrote the code using ECB and an initialization vector is that is how Hamilton Jr framed the question.
\x80(80 in hex = 128). – dr jimbob Jan 30 at 20:06