OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
include
/
crypto
/
internal
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📄
acompress.h
2.05 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
aead.h
4.69 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
akcipher.h
3.63 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
blake2s.h
509 bytes
06/16/2023 05:32:39 PM
rw-r--r--
📄
geniv.h
977 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
hash.h
6.7 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
kpp.h
1.54 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
rng.h
1.2 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
rsa.h
1.81 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
scompress.h
4.24 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
simd.h
509 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
skcipher.h
5.14 KB
01/28/2018 09:20:33 PM
rw-r--r--
Editing: blake2s.h
Close
/* SPDX-License-Identifier: GPL-2.0 OR MIT */ #ifndef _CRYPTO_INTERNAL_BLAKE2S_H #define _CRYPTO_INTERNAL_BLAKE2S_H #include <crypto/blake2s.h> void blake2s_compress_generic(struct blake2s_state *state,const u8 *block, size_t nblocks, const u32 inc); void blake2s_compress_arch(struct blake2s_state *state,const u8 *block, size_t nblocks, const u32 inc); static inline void blake2s_set_lastblock(struct blake2s_state *state) { state->f[0] = -1; } #endif /* _CRYPTO_INTERNAL_BLAKE2S_H */