def testDecidBad(self): # try decoding a non integer ciphertext c = Crypto('some secret key_') plaintext = 'foo' ciphertext = c.enc(plaintext) with throwing(CryptoException): plaintext2 = c.decid(ciphertext)
def testEncidBad(self): # try encoding a non integer c = Crypto('some secret key_') plaintext = 'foo' with throwing(CryptoException): ciphertext = c.encid(plaintext)