| /* |
| * Copyright (C) 2016 Samsung Electronics Co., Ltd. |
| * |
| * This program is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU General Public License |
| * as published by the Free Software Foundation; either version 2 |
| * of the License, or (at your option) any later version. |
| * |
| * This program is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| * GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License |
| * along with this program; if not, see <http://www.gnu.org/licenses/>. |
| */ |
| |
| #ifndef _FSCRYPTO_SEC_H |
| #define _FSCRYPTO_SEC_H |
| |
| #include <crypto/sha.h> |
| #ifdef CONFIG_CRYPTO_FIPS |
| #include <crypto/rng.h> |
| #include "fscrypt_private.h" |
| |
| #endif /* CONFIG CRYPTO_FIPS */ |
| |
| /* |
| * CONSTANT USED BY OUT OF CRYPTO_ODE |
| */ |
| #define FS_RNG_SEED_SIZE 16 |
| #define SEC_FS_AES_256_XTS_SIZE 64 |
| #define SEC_FS_AES_256_CTS_CBC_SIZE 32 |
| #define SEC_FS_MASTER_KEY_SIZE 64 |
| #define SEC_FS_ENCRYPION_MODE_SIZE 2 |
| #define SEC_FS_DERIVED_KEY_INPUT_SIZE SEC_FS_MASTER_KEY_SIZE+FS_KEY_DERIVATION_NONCE_SIZE+SEC_FS_ENCRYPION_MODE_SIZE |
| #define SEC_FS_DERIVED_KEY_OUTPUT_SIZE 64 |
| |
| int fscrypt_sec_get_key_aes(const u8 *master_key, const struct fscrypt_context *ctx, |
| u8 *derived_key, unsigned int derived_keysize, u8 *iv_key); |
| int fscrypt_sec_set_key_aes(char *raw_key); |
| int __init fscrypt_sec_crypto_init(void); |
| void __exit fscrypt_sec_crypto_exit(void); |
| void fscrypto_dump_hex(char *data, int bytes); |
| |
| #ifdef CONFIG_CRYPTO_FIPS |
| struct crypto_rng *fscrypt_sec_alloc_rng(void); |
| void fscrypt_sec_free_rng(struct crypto_rng *rng); |
| #endif /* CONFIG CRYPTO_FIPS */ |
| |
| #endif /* _FSCRYPTO_SEC_H */ |