Launchpad mangled my example code.  Here it is again:

>>> def enc(password):
...     return AES.new("0123456789abcdef", AES.MODE_CFB, "\0"*16) \
...             .encrypt(password).encode('hex')
... 
>>> enc("a")
'6a'
>>> enc("ab")
'6af9'
>>> enc("abc")
'6af9bb'
>>> enc("abc0")
'6af9bb62'
>>> enc("abc1")
'6af9bb63'
>>> enc("abc2")
'6af9bb60'
>>> enc("abc3")
'6af9bb61'
>>> enc("abc4")
'6af9bb66'

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1004845

Title:
  python-keyring CryptedFileKeyring is insecure (was: doesn't work with
  python-crypto 2.6-1 (ValueError: IV must be 16 bytes long))

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-keyring/+bug/1004845/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to