Path: blob/master/include/crypto/internal/compress.h
10818 views
/*1* Compress: Compression algorithms under the cryptographic API.2*3* Copyright 2008 Sony Corporation4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License as published by7* the Free Software Foundation; version 2 of the License.8*9* This program is distributed in the hope that it will be useful,10* but WITHOUT ANY WARRANTY; without even the implied warranty of11* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12* GNU General Public License for more details.13*14* You should have received a copy of the GNU General Public License15* along with this program.16* If not, see <http://www.gnu.org/licenses/>.17*/1819#ifndef _CRYPTO_INTERNAL_COMPRESS_H20#define _CRYPTO_INTERNAL_COMPRESS_H2122#include <crypto/compress.h>2324extern int crypto_register_pcomp(struct pcomp_alg *alg);25extern int crypto_unregister_pcomp(struct pcomp_alg *alg);2627#endif /* _CRYPTO_INTERNAL_COMPRESS_H */282930