summaryrefslogtreecommitdiff
path: root/linux/crypto/internal.h
blob: 5b21f836f6f6a43156f0c060a7faa944d70b54dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Cryptographic API.
 *
 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
 * Copyright (c) 2005 Herbert Xu <herbert@gondor.apana.org.au>
 *
 * 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 option)
 * any later version.
 *
 */
#ifndef _CRYPTO_INTERNAL_H
#define _CRYPTO_INTERNAL_H

struct crypto_type;
struct crypto_alg;

void *crypto_alloc_tfm(const char *, const struct crypto_type *, u32, u32);
unsigned int crypto_alg_extsize(struct crypto_alg *);

#endif	/* _CRYPTO_INTERNAL_H */