summaryrefslogtreecommitdiff
path: root/crypto/tea.c
AgeCommit message (Collapse)Author
2005-03-21[CRYPTO]: Fix sparse warnings in teaDomen Puncer
Signed-off-by: Domen Puncer <domen@coderock.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
2004-09-07[PATCH] crypto: tea.c xtea_encrypt should use XTEA_DELTAThor Kooda
xtea_encrypt() should use XTEA_DELTA instead of TEA_DELTA. Signed-off-by: Thor Kooda <tkooda-patch-kernel@devsec.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2004-06-29[CRYPTO]: Add TEA and XTEA algorithms.Aaron Grothe
The following is a patch against 2.6.7 (should apply cleanly to 2.6.5 or above). It implements the Tiny Encryption Algorithm (TEA) and the Xtended TEA (XTEA) algorithms. TEA goes back to 1994 and is a good algorithm espically for memory constrained systems. It is similar in concept to the IDEA crypto. It does NOT have any patent restrictions and has been put in the public domain by Wheeler and Needham. Tea is used in quite a few products such as filesafe and even Microsoft's Xbox. Signed-off-by: Aaron Grothe <ajgrothe@yahoo.com> Signed-off-by: James Morris <jmorris@redhat.com> Signed-off-by: David S. Miller <davem@redhat.com>