Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /* Values for NULL algorithms */
0003 
0004 #ifndef _CRYPTO_NULL_H
0005 #define _CRYPTO_NULL_H
0006 
0007 #define NULL_KEY_SIZE       0
0008 #define NULL_BLOCK_SIZE     1
0009 #define NULL_DIGEST_SIZE    0
0010 #define NULL_IV_SIZE        0
0011 
0012 struct crypto_sync_skcipher *crypto_get_default_null_skcipher(void);
0013 void crypto_put_default_null_skcipher(void);
0014 
0015 #endif