Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/crypto/compress.h
26131 views
1
/* SPDX-License-Identifier: GPL-2.0-or-later */
2
/*
3
* Cryptographic API.
4
*
5
* Copyright 2015 LG Electronics Inc.
6
* Copyright (c) 2016, Intel Corporation
7
* Copyright (c) 2023 Herbert Xu <[email protected]>
8
*/
9
#ifndef _LOCAL_CRYPTO_COMPRESS_H
10
#define _LOCAL_CRYPTO_COMPRESS_H
11
12
#include "internal.h"
13
14
struct acomp_req;
15
struct comp_alg_common;
16
17
int crypto_init_scomp_ops_async(struct crypto_tfm *tfm);
18
19
void comp_prepare_alg(struct comp_alg_common *alg);
20
21
#endif /* _LOCAL_CRYPTO_COMPRESS_H */
22
23