repo.or.cz
/
linux.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Linux 6.14-rc1
[linux.git]
/
arch
/
s390
/
crypto
/
chacha-s390.h
blob
733744ce30f5b1c925fc110c60f37b0d0e9ccc53
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/*
3
* s390 ChaCha stream cipher.
4
*
5
* Copyright IBM Corp. 2021
6
*/
7
8
#ifndef _CHACHA_S390_H
9
#define _CHACHA_S390_H
10
11
void
chacha20_vx
(
u8
*
out
,
const
u8
*
inp
,
size_t
len
,
const
u32
*
key
,
12
const
u32
*
counter
);
13
14
#endif
/* _CHACHA_S390_H */