Exemplo n.º 1
0
	def testEncidBad(self):
		# try encoding a non integer
		c = Crypto('some secret key_')
		plaintext = 'foo'
		with throwing(CryptoException):
			ciphertext = c.encid(plaintext)
Exemplo n.º 2
0
	def testEncidDecid(self):
		c = Crypto('some secret key_')
		plaintext = 1
		ciphertext = c.encid(plaintext)
		plaintext2 = c.decid(ciphertext)
		assert plaintext == plaintext2