Merge branch 'for-3.11' of git://linux-nfs.org/~bfields/linux
[linux-2.6.git] / drivers / staging / rtl8192u / ieee80211 / internal.h
blob6f54cfe8a4679c28829bf2ed3e8190ab812a92d9
1 /*
2 * Cryptographic API.
4 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
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.
12 #ifndef _CRYPTO_INTERNAL_H
13 #define _CRYPTO_INTERNAL_H
16 //#include <linux/crypto.h>
17 #include "rtl_crypto.h"
18 #include <linux/mm.h>
19 #include <linux/highmem.h>
20 #include <linux/init.h>
21 #include <asm/hardirq.h>
22 #include <asm/softirq.h>
23 #include <asm/kmap_types.h>
26 static inline void crypto_yield(struct crypto_tfm *tfm)
28 if (!in_softirq())
29 cond_resched();
32 static inline void *crypto_tfm_ctx(struct crypto_tfm *tfm)
34 return (void *)&tfm[1];
37 struct crypto_alg *crypto_alg_lookup(const char *name);
39 #ifdef CONFIG_KMOD
40 void crypto_alg_autoload(const char *name);
41 struct crypto_alg *crypto_alg_mod_lookup(const char *name);
42 #else
43 static inline struct crypto_alg *crypto_alg_mod_lookup(const char *name)
45 return crypto_alg_lookup(name);
47 #endif
49 #ifdef CONFIG_CRYPTO_HMAC
50 int crypto_alloc_hmac_block(struct crypto_tfm *tfm);
51 void crypto_free_hmac_block(struct crypto_tfm *tfm);
52 #else
53 static inline int crypto_alloc_hmac_block(struct crypto_tfm *tfm)
55 return 0;
58 static inline void crypto_free_hmac_block(struct crypto_tfm *tfm)
59 { }
60 #endif
62 #ifdef CONFIG_PROC_FS
63 void __init crypto_init_proc(void);
64 #else
65 static inline void crypto_init_proc(void)
66 { }
67 #endif
69 int crypto_init_digest_flags(struct crypto_tfm *tfm, u32 flags);
70 int crypto_init_cipher_flags(struct crypto_tfm *tfm, u32 flags);
71 int crypto_init_compress_flags(struct crypto_tfm *tfm, u32 flags);
73 int crypto_init_digest_ops(struct crypto_tfm *tfm);
74 int crypto_init_cipher_ops(struct crypto_tfm *tfm);
75 int crypto_init_compress_ops(struct crypto_tfm *tfm);
77 void crypto_exit_digest_ops(struct crypto_tfm *tfm);
78 void crypto_exit_cipher_ops(struct crypto_tfm *tfm);
79 void crypto_exit_compress_ops(struct crypto_tfm *tfm);
81 #endif /* _CRYPTO_INTERNAL_H */