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/linux/crypto.h | |
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/linux/crypto.h')
-rw-r--r-- | include/linux/crypto.h | 25 |
1 files changed, 25 insertions, 0 deletions
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, |