2018-03-27 00:04:16 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 naehrwert
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope 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/>.
|
|
|
|
*/
|
|
|
|
|
2018-05-01 06:15:48 +01:00
|
|
|
#ifndef _SE_H_
|
|
|
|
#define _SE_H_
|
2018-03-14 23:26:19 +00:00
|
|
|
|
2018-08-13 09:58:24 +01:00
|
|
|
#include "../utils/types.h"
|
2018-03-14 23:26:19 +00:00
|
|
|
|
2018-05-01 06:15:48 +01:00
|
|
|
void se_rsa_acc_ctrl(u32 rs, u32 flags);
|
|
|
|
void se_key_acc_ctrl(u32 ks, u32 flags);
|
|
|
|
void se_aes_key_set(u32 ks, void *key, u32 size);
|
|
|
|
void se_aes_key_clear(u32 ks);
|
2018-05-13 02:13:17 +01:00
|
|
|
int se_aes_unwrap_key(u32 ks_dst, u32 ks_src, const void *input);
|
2019-09-12 21:27:04 +01:00
|
|
|
int se_aes_crypt_ecb(u32 ks, u32 enc, void *dst, u32 dst_size, const void *src, u32 src_size);
|
2018-05-13 02:13:17 +01:00
|
|
|
int se_aes_crypt_block_ecb(u32 ks, u32 enc, void *dst, const void *src);
|
|
|
|
int se_aes_crypt_ctr(u32 ks, void *dst, u32 dst_size, const void *src, u32 src_size, void *ctr);
|
2018-06-26 17:09:26 +01:00
|
|
|
int se_calc_sha256(void *dst, const void *src, u32 src_size);
|
2018-05-15 18:15:22 +01:00
|
|
|
|
2018-03-14 23:26:19 +00:00
|
|
|
#endif
|