diff options
author | Neil Horman <nhorman@tuxdriver.com> | 2008-08-14 08:15:52 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-08-29 01:50:04 -0400 |
commit | 17f0f4a47df9aea9ee26c939f8057c35e0be1847 (patch) | |
tree | d6c7ff6c93573227a49c9e8fe06c53d97950e4e6 /include | |
parent | ccb778e1841ce04b4c10b39f0dd2558ab2c6dcd4 (diff) |
crypto: rng - RNG interface and implementation
This patch adds a random number generator interface as well as a
cryptographic pseudo-random number generator based on AES. It is
meant to be used in cases where a deterministic CPRNG is required.
One of the first applications will be as an input in the IPsec IV
generation process.
Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include')
-rw-r--r-- | include/crypto/internal/rng.h | 26 | ||||
-rw-r--r-- | include/crypto/rng.h | 75 | ||||
-rw-r--r-- | include/linux/crypto.h | 25 |
3 files changed, 126 insertions, 0 deletions
diff --git a/include/crypto/internal/rng.h b/include/crypto/internal/rng.h new file mode 100644 index 000000000000..896973369573 --- /dev/null +++ b/include/crypto/internal/rng.h | |||
@@ -0,0 +1,26 @@ | |||
1 | /* | ||
2 | * RNG: Random Number Generator algorithms under the crypto API | ||
3 | * | ||
4 | * Copyright (c) 2008 Neil Horman <nhorman@tuxdriver.com> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms of the GNU General Public License as published by the Free | ||
8 | * Software Foundation; either version 2 of the License, or (at your option) | ||
9 | * any later version. | ||
10 | * | ||
11 | */ | ||
12 | |||
13 | #ifndef _CRYPTO_INTERNAL_RNG_H | ||
14 | #define _CRYPTO_INTERNAL_RNG_H | ||
15 | |||
16 | #include <crypto/algapi.h> | ||
17 | #include <crypto/rng.h> | ||
18 | |||
19 | extern const struct crypto_type crypto_rng_type; | ||
20 | |||
21 | static inline void *crypto_rng_ctx(struct crypto_rng *tfm) | ||
22 | { | ||
23 | return crypto_tfm_ctx(&tfm->base); | ||
24 | } | ||
25 | |||
26 | #endif | ||
diff --git a/include/crypto/rng.h b/include/crypto/rng.h new file mode 100644 index 000000000000..c93f9b917925 --- /dev/null +++ b/include/crypto/rng.h | |||
@@ -0,0 +1,75 @@ | |||
1 | /* | ||
2 | * RNG: Random Number Generator algorithms under the crypto API | ||
3 | * | ||
4 | * Copyright (c) 2008 Neil Horman <nhorman@tuxdriver.com> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms of the GNU General Public License as published by the Free | ||
8 | * Software Foundation; either version 2 of the License, or (at your option) | ||
9 | * any later version. | ||
10 | * | ||
11 | */ | ||
12 | |||
13 | #ifndef _CRYPTO_RNG_H | ||
14 | #define _CRYPTO_RNG_H | ||
15 | |||
16 | #include <linux/crypto.h> | ||
17 | |||
18 | extern struct crypto_rng *crypto_default_rng; | ||
19 | |||
20 | int crypto_get_default_rng(void); | ||
21 | void crypto_put_default_rng(void); | ||
22 | |||
23 | static inline struct crypto_rng *__crypto_rng_cast(struct crypto_tfm *tfm) | ||
24 | { | ||
25 | return (struct crypto_rng *)tfm; | ||
26 | } | ||
27 | |||
28 | static inline struct crypto_rng *crypto_alloc_rng(const char *alg_name, | ||
29 | u32 type, u32 mask) | ||
30 | { | ||
31 | type &= ~CRYPTO_ALG_TYPE_MASK; | ||
32 | type |= CRYPTO_ALG_TYPE_RNG; | ||
33 | mask |= CRYPTO_ALG_TYPE_MASK; | ||
34 | |||
35 | return __crypto_rng_cast(crypto_alloc_base(alg_name, type, mask)); | ||
36 | } | ||
37 | |||
38 | static inline struct crypto_tfm *crypto_rng_tfm(struct crypto_rng *tfm) | ||
39 | { | ||
40 | return &tfm->base; | ||
41 | } | ||
42 | |||
43 | static inline struct rng_alg *crypto_rng_alg(struct crypto_rng *tfm) | ||
44 | { | ||
45 | return &crypto_rng_tfm(tfm)->__crt_alg->cra_rng; | ||
46 | } | ||
47 | |||
48 | static inline struct rng_tfm *crypto_rng_crt(struct crypto_rng *tfm) | ||
49 | { | ||
50 | return &crypto_rng_tfm(tfm)->crt_rng; | ||
51 | } | ||
52 | |||
53 | static inline void crypto_free_rng(struct crypto_rng *tfm) | ||
54 | { | ||
55 | crypto_free_tfm(crypto_rng_tfm(tfm)); | ||
56 | } | ||
57 | |||
58 | static inline int crypto_rng_get_bytes(struct crypto_rng *tfm, | ||
59 | u8 *rdata, unsigned int dlen) | ||
60 | { | ||
61 | return crypto_rng_crt(tfm)->rng_gen_random(tfm, rdata, dlen); | ||
62 | } | ||
63 | |||
64 | static inline int crypto_rng_reset(struct crypto_rng *tfm, | ||
65 | u8 *seed, unsigned int slen) | ||
66 | { | ||
67 | return crypto_rng_crt(tfm)->rng_reset(tfm, seed, slen); | ||
68 | } | ||
69 | |||
70 | static inline int crypto_rng_seedsize(struct crypto_rng *tfm) | ||
71 | { | ||
72 | return crypto_rng_alg(tfm)->seedsize; | ||
73 | } | ||
74 | |||
75 | #endif | ||
diff --git a/include/linux/crypto.h b/include/linux/crypto.h index 81d994a3bdaf..3d2317e4af2e 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h | |||
@@ -38,6 +38,7 @@ | |||
38 | #define CRYPTO_ALG_TYPE_DIGEST 0x00000008 | 38 | #define CRYPTO_ALG_TYPE_DIGEST 0x00000008 |
39 | #define CRYPTO_ALG_TYPE_HASH 0x00000009 | 39 | #define CRYPTO_ALG_TYPE_HASH 0x00000009 |
40 | #define CRYPTO_ALG_TYPE_AHASH 0x0000000a | 40 | #define CRYPTO_ALG_TYPE_AHASH 0x0000000a |
41 | #define CRYPTO_ALG_TYPE_RNG 0x0000000c | ||
41 | 42 | ||
42 | #define CRYPTO_ALG_TYPE_HASH_MASK 0x0000000e | 43 | #define CRYPTO_ALG_TYPE_HASH_MASK 0x0000000e |
43 | #define CRYPTO_ALG_TYPE_AHASH_MASK 0x0000000c | 44 | #define CRYPTO_ALG_TYPE_AHASH_MASK 0x0000000c |
@@ -113,6 +114,7 @@ struct crypto_aead; | |||
113 | struct crypto_blkcipher; | 114 | struct crypto_blkcipher; |
114 | struct crypto_hash; | 115 | struct crypto_hash; |
115 | struct crypto_ahash; | 116 | struct crypto_ahash; |
117 | struct crypto_rng; | ||
116 | struct crypto_tfm; | 118 | struct crypto_tfm; |
117 | struct crypto_type; | 119 | struct crypto_type; |
118 | struct aead_givcrypt_request; | 120 | struct aead_givcrypt_request; |
@@ -298,6 +300,15 @@ struct compress_alg { | |||
298 | unsigned int slen, u8 *dst, unsigned int *dlen); | 300 | unsigned int slen, u8 *dst, unsigned int *dlen); |
299 | }; | 301 | }; |
300 | 302 | ||
303 | struct rng_alg { | ||
304 | int (*rng_make_random)(struct crypto_rng *tfm, u8 *rdata, | ||
305 | unsigned int dlen); | ||
306 | int (*rng_reset)(struct crypto_rng *tfm, u8 *seed, unsigned int slen); | ||
307 | |||
308 | unsigned int seedsize; | ||
309 | }; | ||
310 | |||
311 | |||
301 | #define cra_ablkcipher cra_u.ablkcipher | 312 | #define cra_ablkcipher cra_u.ablkcipher |
302 | #define cra_aead cra_u.aead | 313 | #define cra_aead cra_u.aead |
303 | #define cra_blkcipher cra_u.blkcipher | 314 | #define cra_blkcipher cra_u.blkcipher |
@@ -306,6 +317,7 @@ struct compress_alg { | |||
306 | #define cra_hash cra_u.hash | 317 | #define cra_hash cra_u.hash |
307 | #define cra_ahash cra_u.ahash | 318 | #define cra_ahash cra_u.ahash |
308 | #define cra_compress cra_u.compress | 319 | #define cra_compress cra_u.compress |
320 | #define cra_rng cra_u.rng | ||
309 | 321 | ||
310 | struct crypto_alg { | 322 | struct crypto_alg { |
311 | struct list_head cra_list; | 323 | struct list_head cra_list; |
@@ -333,6 +345,7 @@ struct crypto_alg { | |||
333 | struct hash_alg hash; | 345 | struct hash_alg hash; |
334 | struct ahash_alg ahash; | 346 | struct ahash_alg ahash; |
335 | struct compress_alg compress; | 347 | struct compress_alg compress; |
348 | struct rng_alg rng; | ||
336 | } cra_u; | 349 | } cra_u; |
337 | 350 | ||
338 | int (*cra_init)(struct crypto_tfm *tfm); | 351 | int (*cra_init)(struct crypto_tfm *tfm); |
@@ -438,6 +451,12 @@ struct compress_tfm { | |||
438 | u8 *dst, unsigned int *dlen); | 451 | u8 *dst, unsigned int *dlen); |
439 | }; | 452 | }; |
440 | 453 | ||
454 | struct rng_tfm { | ||
455 | int (*rng_gen_random)(struct crypto_rng *tfm, u8 *rdata, | ||
456 | unsigned int dlen); | ||
457 | int (*rng_reset)(struct crypto_rng *tfm, u8 *seed, unsigned int slen); | ||
458 | }; | ||
459 | |||
441 | #define crt_ablkcipher crt_u.ablkcipher | 460 | #define crt_ablkcipher crt_u.ablkcipher |
442 | #define crt_aead crt_u.aead | 461 | #define crt_aead crt_u.aead |
443 | #define crt_blkcipher crt_u.blkcipher | 462 | #define crt_blkcipher crt_u.blkcipher |
@@ -445,6 +464,7 @@ struct compress_tfm { | |||
445 | #define crt_hash crt_u.hash | 464 | #define crt_hash crt_u.hash |
446 | #define crt_ahash crt_u.ahash | 465 | #define crt_ahash crt_u.ahash |
447 | #define crt_compress crt_u.compress | 466 | #define crt_compress crt_u.compress |
467 | #define crt_rng crt_u.rng | ||
448 | 468 | ||
449 | struct crypto_tfm { | 469 | struct crypto_tfm { |
450 | 470 | ||
@@ -458,6 +478,7 @@ struct crypto_tfm { | |||
458 | struct hash_tfm hash; | 478 | struct hash_tfm hash; |
459 | struct ahash_tfm ahash; | 479 | struct ahash_tfm ahash; |
460 | struct compress_tfm compress; | 480 | struct compress_tfm compress; |
481 | struct rng_tfm rng; | ||
461 | } crt_u; | 482 | } crt_u; |
462 | 483 | ||
463 | struct crypto_alg *__crt_alg; | 484 | struct crypto_alg *__crt_alg; |
@@ -489,6 +510,10 @@ struct crypto_hash { | |||
489 | struct crypto_tfm base; | 510 | struct crypto_tfm base; |
490 | }; | 511 | }; |
491 | 512 | ||
513 | struct crypto_rng { | ||
514 | struct crypto_tfm base; | ||
515 | }; | ||
516 | |||
492 | enum { | 517 | enum { |
493 | CRYPTOA_UNSPEC, | 518 | CRYPTOA_UNSPEC, |
494 | CRYPTOA_ALG, | 519 | CRYPTOA_ALG, |