diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-15 18:57:38 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-15 18:57:38 -0700 |
commit | 260eddf4391f162a69d1d163729249635fa7a78f (patch) | |
tree | 56800d02133c839b26a74f203918c2d68cb0ce7c /crypto/prng.h | |
parent | f2d9c740f6b9f92608dfb2a2bdd797e0350cabe4 (diff) | |
parent | 7890ea1f95fa8968fa6f5bb5860e6632932abfd3 (diff) | |
download | op-kernel-dev-260eddf4391f162a69d1d163729249635fa7a78f.zip op-kernel-dev-260eddf4391f162a69d1d163729249635fa7a78f.tar.gz |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6:
Revert crypto: prng - Deterministic CPRNG
Diffstat (limited to 'crypto/prng.h')
-rw-r--r-- | crypto/prng.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/crypto/prng.h b/crypto/prng.h deleted file mode 100644 index 1ac9be5..0000000 --- a/crypto/prng.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * PRNG: Pseudo Random Number Generator - * - * (C) Neil Horman <nhorman@tuxdriver.com> - * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the - * Free Software Foundation; either version 2 of the License, or (at your - * any later version. - * - * - */ - -#ifndef _PRNG_H_ -#define _PRNG_H_ -struct prng_context; - -int get_prng_bytes(char *buf, int nbytes, struct prng_context *ctx); -struct prng_context *alloc_prng_context(void); -int reset_prng_context(struct prng_context *ctx, - unsigned char *key, unsigned char *iv, - unsigned char *V, - unsigned char *DT); -void free_prng_context(struct prng_context *ctx); - -#endif - |