]> git.sesse.net Git - bcachefs-tools-debian/blob - linux/crypto/internal.h
Update bcachefs sources to 3610542890 bcachefs: Convert to skcipher interface for...
[bcachefs-tools-debian] / linux / crypto / internal.h
1 /*
2  * Cryptographic API.
3  *
4  * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
5  * Copyright (c) 2005 Herbert Xu <herbert@gondor.apana.org.au>
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License as published by the Free
9  * Software Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  */
13 #ifndef _CRYPTO_INTERNAL_H
14 #define _CRYPTO_INTERNAL_H
15
16 struct crypto_type;
17 struct crypto_alg;
18
19 void *crypto_alloc_tfm(const char *, const struct crypto_type *, u32, u32);
20 unsigned int crypto_alg_extsize(struct crypto_alg *);
21
22 #endif  /* _CRYPTO_INTERNAL_H */
23