Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * s390 ChaCha stream cipher.
0004  *
0005  * Copyright IBM Corp. 2021
0006  */
0007 
0008 #ifndef _CHACHA_S390_H
0009 #define _CHACHA_S390_H
0010 
0011 void chacha20_vx(u8 *out, const u8 *inp, size_t len, const u32 *key,
0012          const u32 *counter);
0013 
0014 #endif /* _CHACHA_S390_H */