diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-07 01:12:37 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-07 01:12:37 -0400 |
| commit | 7cd4767e696123cdb7447fbd7c281eb8c610c8e4 (patch) | |
| tree | 8a44dfbe0a131f6036eab36f887a058e9750fe69 /include/linux | |
| parent | 1957e7fdefce4494cb8d8f09ee2317b7ede24994 (diff) | |
| parent | 6e5714eaf77d79ae1c8b47e3e040ff5411b717ec (diff) | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net:
net: Compute protocol sequence numbers and fragment IDs using MD5.
crypto: Move md5_transform to lib/md5.c
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/cryptohash.h | 5 | ||||
| -rw-r--r-- | include/linux/random.h | 12 |
2 files changed, 5 insertions, 12 deletions
diff --git a/include/linux/cryptohash.h b/include/linux/cryptohash.h index f9452185b019..2cd9f1cf9fa3 100644 --- a/include/linux/cryptohash.h +++ b/include/linux/cryptohash.h | |||
| @@ -8,6 +8,11 @@ | |||
| 8 | void sha_init(__u32 *buf); | 8 | void sha_init(__u32 *buf); |
| 9 | void sha_transform(__u32 *digest, const char *data, __u32 *W); | 9 | void sha_transform(__u32 *digest, const char *data, __u32 *W); |
| 10 | 10 | ||
| 11 | #define MD5_DIGEST_WORDS 4 | ||
| 12 | #define MD5_MESSAGE_BYTES 64 | ||
| 13 | |||
| 14 | void md5_transform(__u32 *hash, __u32 const *in); | ||
| 15 | |||
| 11 | __u32 half_md4_transform(__u32 buf[4], __u32 const in[8]); | 16 | __u32 half_md4_transform(__u32 buf[4], __u32 const in[8]); |
| 12 | 17 | ||
| 13 | #endif | 18 | #endif |
diff --git a/include/linux/random.h b/include/linux/random.h index ce29a040c8dc..d13059f3ea32 100644 --- a/include/linux/random.h +++ b/include/linux/random.h | |||
| @@ -57,18 +57,6 @@ extern void add_interrupt_randomness(int irq); | |||
| 57 | extern void get_random_bytes(void *buf, int nbytes); | 57 | extern void get_random_bytes(void *buf, int nbytes); |
| 58 | void generate_random_uuid(unsigned char uuid_out[16]); | 58 | void generate_random_uuid(unsigned char uuid_out[16]); |
| 59 | 59 | ||
| 60 | extern __u32 secure_ip_id(__be32 daddr); | ||
| 61 | extern __u32 secure_ipv6_id(const __be32 daddr[4]); | ||
| 62 | extern u32 secure_ipv4_port_ephemeral(__be32 saddr, __be32 daddr, __be16 dport); | ||
| 63 | extern u32 secure_ipv6_port_ephemeral(const __be32 *saddr, const __be32 *daddr, | ||
| 64 | __be16 dport); | ||
| 65 | extern __u32 secure_tcp_sequence_number(__be32 saddr, __be32 daddr, | ||
| 66 | __be16 sport, __be16 dport); | ||
| 67 | extern __u32 secure_tcpv6_sequence_number(__be32 *saddr, __be32 *daddr, | ||
| 68 | __be16 sport, __be16 dport); | ||
| 69 | extern u64 secure_dccp_sequence_number(__be32 saddr, __be32 daddr, | ||
| 70 | __be16 sport, __be16 dport); | ||
| 71 | |||
| 72 | #ifndef MODULE | 60 | #ifndef MODULE |
| 73 | extern const struct file_operations random_fops, urandom_fops; | 61 | extern const struct file_operations random_fops, urandom_fops; |
| 74 | #endif | 62 | #endif |
