mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-11 14:26:34 +00:00
![Herbert Xu](/assets/img/avatar_default.png)
Current the default null skcipher is actually a crypto_blkcipher. This patch creates a synchronous crypto_skcipher version of the null cipher which unfortunately has to settle for the name skcipher2. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
17 lines
414 B
C
17 lines
414 B
C
/* Values for NULL algorithms */
|
|
|
|
#ifndef _CRYPTO_NULL_H
|
|
#define _CRYPTO_NULL_H
|
|
|
|
#define NULL_KEY_SIZE 0
|
|
#define NULL_BLOCK_SIZE 1
|
|
#define NULL_DIGEST_SIZE 0
|
|
#define NULL_IV_SIZE 0
|
|
|
|
struct crypto_blkcipher *crypto_get_default_null_skcipher(void);
|
|
void crypto_put_default_null_skcipher(void);
|
|
struct crypto_skcipher *crypto_get_default_null_skcipher2(void);
|
|
void crypto_put_default_null_skcipher2(void);
|
|
|
|
#endif
|