aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/serpent.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/serpent.c')
-rw-r--r--crypto/serpent.c41
1 files changed, 22 insertions, 19 deletions
diff --git a/crypto/serpent.c b/crypto/serpent.c
index b651a55fa569..867ca93ebb63 100644
--- a/crypto/serpent.c
+++ b/crypto/serpent.c
@@ -21,16 +21,12 @@
21#include <asm/byteorder.h> 21#include <asm/byteorder.h>
22#include <linux/crypto.h> 22#include <linux/crypto.h>
23#include <linux/types.h> 23#include <linux/types.h>
24#include <crypto/serpent.h>
24 25
25/* Key is padded to the maximum of 256 bits before round key generation. 26/* Key is padded to the maximum of 256 bits before round key generation.
26 * Any key length <= 256 bits (32 bytes) is allowed by the algorithm. 27 * Any key length <= 256 bits (32 bytes) is allowed by the algorithm.
27 */ 28 */
28 29
29#define SERPENT_MIN_KEY_SIZE 0
30#define SERPENT_MAX_KEY_SIZE 32
31#define SERPENT_EXPKEY_WORDS 132
32#define SERPENT_BLOCK_SIZE 16
33
34#define PHI 0x9e3779b9UL 30#define PHI 0x9e3779b9UL
35 31
36#define keyiter(a,b,c,d,i,j) \ 32#define keyiter(a,b,c,d,i,j) \
@@ -210,13 +206,7 @@
210 x1 ^= x4; x3 ^= x4; x4 &= x0; \ 206 x1 ^= x4; x3 ^= x4; x4 &= x0; \
211 x4 ^= x2; 207 x4 ^= x2;
212 208
213struct serpent_ctx { 209int serpent_setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int keylen)
214 u32 expkey[SERPENT_EXPKEY_WORDS];
215};
216
217
218static int serpent_setkey(struct crypto_tfm *tfm, const u8 *key,
219 unsigned int keylen)
220{ 210{
221 struct serpent_ctx *ctx = crypto_tfm_ctx(tfm); 211 struct serpent_ctx *ctx = crypto_tfm_ctx(tfm);
222 u32 *k = ctx->expkey; 212 u32 *k = ctx->expkey;
@@ -359,12 +349,11 @@ static int serpent_setkey(struct crypto_tfm *tfm, const u8 *key,
359 349
360 return 0; 350 return 0;
361} 351}
352EXPORT_SYMBOL_GPL(serpent_setkey);
362 353
363static void serpent_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) 354void __serpent_encrypt(struct serpent_ctx *ctx, u8 *dst, const u8 *src)
364{ 355{
365 struct serpent_ctx *ctx = crypto_tfm_ctx(tfm); 356 const u32 *k = ctx->expkey;
366 const u32
367 *k = ctx->expkey;
368 const __le32 *s = (const __le32 *)src; 357 const __le32 *s = (const __le32 *)src;
369 __le32 *d = (__le32 *)dst; 358 __le32 *d = (__le32 *)dst;
370 u32 r0, r1, r2, r3, r4; 359 u32 r0, r1, r2, r3, r4;
@@ -418,12 +407,18 @@ static void serpent_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
418 d[2] = cpu_to_le32(r2); 407 d[2] = cpu_to_le32(r2);
419 d[3] = cpu_to_le32(r3); 408 d[3] = cpu_to_le32(r3);
420} 409}
410EXPORT_SYMBOL_GPL(__serpent_encrypt);
421 411
422static void serpent_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) 412static void serpent_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
423{ 413{
424 struct serpent_ctx *ctx = crypto_tfm_ctx(tfm); 414 struct serpent_ctx *ctx = crypto_tfm_ctx(tfm);
425 const u32 415
426 *k = ((struct serpent_ctx *)ctx)->expkey; 416 __serpent_encrypt(ctx, dst, src);
417}
418
419void __serpent_decrypt(struct serpent_ctx *ctx, u8 *dst, const u8 *src)
420{
421 const u32 *k = ctx->expkey;
427 const __le32 *s = (const __le32 *)src; 422 const __le32 *s = (const __le32 *)src;
428 __le32 *d = (__le32 *)dst; 423 __le32 *d = (__le32 *)dst;
429 u32 r0, r1, r2, r3, r4; 424 u32 r0, r1, r2, r3, r4;
@@ -472,6 +467,14 @@ static void serpent_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
472 d[2] = cpu_to_le32(r1); 467 d[2] = cpu_to_le32(r1);
473 d[3] = cpu_to_le32(r4); 468 d[3] = cpu_to_le32(r4);
474} 469}
470EXPORT_SYMBOL_GPL(__serpent_decrypt);
471
472static void serpent_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
473{
474 struct serpent_ctx *ctx = crypto_tfm_ctx(tfm);
475
476 __serpent_decrypt(ctx, dst, src);
477}
475 478
476static struct crypto_alg serpent_alg = { 479static struct crypto_alg serpent_alg = {
477 .cra_name = "serpent", 480 .cra_name = "serpent",