This is a Go implementation of the "Corrected Block TEA" or "XXTEA" block cipher algorithm described in Correction to xtea.
This implementation differs from the original one implemented by Hilko Bengen by how the data and the key are handled: in this implementation we use Big Endian Signed Integers instead of unsigned int32s.
We've corrected this implementation in order to decrypt data that is encrypted with this method (aka Mathieu Carbou's / Ovea's implementation).
BSD 2-clause, see LICENSE file in the source distribution.
- Hilko Bengen [email protected]
- Denys Vitali [email protected]