blob: bb8048f1ee749d4c6998419dcced8fecddd4a80d [file] [log] [blame]
Mona Hossainbe7f67d2013-05-30 15:29:20 -07001/* Copyright (c) 2013, The Linux Foundation. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12
13#ifndef _DRIVERS_CRYPTO_MSM_QCRYPTO_H_
14#define _DRIVERS_CRYPTO_MSM_QCRYPTO_H_
15
16#include <linux/crypto.h>
17#include <crypto/hash.h>
18
19#define QCRYPTO_CTX_KEY_MASK 0x000000ff
20#define QCRYPTO_CTX_USE_HW_KEY 0x00000001
21#define QCRYPTO_CTX_USE_PIPE_KEY 0x00000002
22
23#define QCRYPTO_CTX_XTS_MASK 0x0000ff00
24#define QCRYPTO_CTX_XTS_DU_SIZE_512B 0x00000100
25#define QCRYPTO_CTX_XTS_DU_SIZE_1KB 0x00000200
26
27int qcrypto_cipher_set_flag(struct ablkcipher_request *req, unsigned int flags);
28int qcrypto_ahash_set_flag(struct ahash_request *req, unsigned int flags);
29int qcrypto_aead_set_flag(struct aead_request *req, unsigned int flags);
30
31int qcrypto_cipher_clear_flag(struct ablkcipher_request *req,
32 unsigned int flags);
33int qcrypto_ahash_clear_flag(struct ahash_request *req, unsigned int flags);
34int qcrypto_aead_clear_flag(struct aead_request *req, unsigned int flags);
35
36#endif /* _DRIVERS_CRYPTO_MSM_QCRYPTO_H */