trezor-core/embed/extmod/modtrezorcrypto/modtrezorcrypto-sha3-512.h

108 lines
4.0 KiB
C
Raw Normal View History

2016-04-20 10:40:08 -07:00
/*
2018-02-26 05:06:10 -08:00
* This file is part of the TREZOR project, https://trezor.io/
2016-04-20 10:40:08 -07:00
*
2018-02-26 05:06:10 -08:00
* Copyright (c) SatoshiLabs
*
* 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 3 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/>.
2016-04-20 10:40:08 -07:00
*/
#include "py/objstr.h"
#include "sha3.h"
#include "memzero.h"
2016-04-20 10:40:08 -07:00
/// class Sha3_512:
/// '''
/// SHA3_512 context.
/// '''
2016-04-20 10:40:08 -07:00
typedef struct _mp_obj_Sha3_512_t {
mp_obj_base_t base;
2016-04-26 08:48:58 -07:00
SHA3_CTX ctx;
2016-04-20 10:40:08 -07:00
} mp_obj_Sha3_512_t;
2017-06-14 09:47:38 -07:00
STATIC mp_obj_t mod_trezorcrypto_Sha3_512_update(mp_obj_t self, mp_obj_t data);
2016-04-20 10:40:08 -07:00
/// def __init__(self, data: bytes = None) -> None:
/// '''
/// Creates a hash context object.
/// '''
2017-06-14 09:47:38 -07:00
STATIC mp_obj_t mod_trezorcrypto_Sha3_512_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) {
2016-04-20 10:40:08 -07:00
mp_arg_check_num(n_args, n_kw, 0, 1, false);
mp_obj_Sha3_512_t *o = m_new_obj(mp_obj_Sha3_512_t);
o->base.type = type;
2016-04-26 08:48:58 -07:00
sha3_512_Init(&(o->ctx));
2016-04-20 10:40:08 -07:00
// constructor called with bytes/str as first parameter
if (n_args == 1) {
2017-06-14 09:47:38 -07:00
mod_trezorcrypto_Sha3_512_update(MP_OBJ_FROM_PTR(o), args[0]);
2016-04-20 10:40:08 -07:00
}
return MP_OBJ_FROM_PTR(o);
}
/// def update(self, data: bytes) -> None:
/// '''
/// Update the hash context with hashed data.
/// '''
2017-06-14 09:47:38 -07:00
STATIC mp_obj_t mod_trezorcrypto_Sha3_512_update(mp_obj_t self, mp_obj_t data) {
2016-04-20 10:40:08 -07:00
mp_obj_Sha3_512_t *o = MP_OBJ_TO_PTR(self);
mp_buffer_info_t msg;
mp_get_buffer_raise(data, &msg, MP_BUFFER_READ);
if (msg.len > 0) {
sha3_Update(&(o->ctx), msg.buf, msg.len);
}
2016-04-20 10:40:08 -07:00
return mp_const_none;
}
2017-06-14 09:47:38 -07:00
STATIC MP_DEFINE_CONST_FUN_OBJ_2(mod_trezorcrypto_Sha3_512_update_obj, mod_trezorcrypto_Sha3_512_update);
2016-04-20 10:40:08 -07:00
/// def digest(self, keccak: bool = False) -> bytes:
/// '''
/// Returns the digest of hashed data.
/// '''
2017-06-14 09:47:38 -07:00
STATIC mp_obj_t mod_trezorcrypto_Sha3_512_digest(size_t n_args, const mp_obj_t *args) {
mp_obj_Sha3_512_t *o = MP_OBJ_TO_PTR(args[0]);
uint8_t out[SHA3_512_DIGEST_LENGTH];
2016-04-26 08:48:58 -07:00
SHA3_CTX ctx;
memcpy(&ctx, &(o->ctx), sizeof(SHA3_CTX));
if (n_args > 1 && args[1] == mp_const_true) {
keccak_Final(&ctx, out);
} else {
sha3_Final(&ctx, out);
}
2016-04-26 08:48:58 -07:00
memset(&ctx, 0, sizeof(SHA3_CTX));
return mp_obj_new_bytes(out, sizeof(out));
2016-04-20 10:40:08 -07:00
}
2017-06-14 09:47:38 -07:00
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(mod_trezorcrypto_Sha3_512_digest_obj, 1, 2, mod_trezorcrypto_Sha3_512_digest);
2016-04-20 10:40:08 -07:00
2017-06-14 09:47:38 -07:00
STATIC mp_obj_t mod_trezorcrypto_Sha3_512___del__(mp_obj_t self) {
2016-04-20 10:40:08 -07:00
mp_obj_Sha3_512_t *o = MP_OBJ_TO_PTR(self);
memzero(&(o->ctx), sizeof(SHA3_CTX));
2016-04-20 10:40:08 -07:00
return mp_const_none;
}
2017-06-14 09:47:38 -07:00
STATIC MP_DEFINE_CONST_FUN_OBJ_1(mod_trezorcrypto_Sha3_512___del___obj, mod_trezorcrypto_Sha3_512___del__);
2016-04-20 10:40:08 -07:00
2017-06-14 09:47:38 -07:00
STATIC const mp_rom_map_elem_t mod_trezorcrypto_Sha3_512_locals_dict_table[] = {
{ MP_ROM_QSTR(MP_QSTR_update), MP_ROM_PTR(&mod_trezorcrypto_Sha3_512_update_obj) },
{ MP_ROM_QSTR(MP_QSTR_digest), MP_ROM_PTR(&mod_trezorcrypto_Sha3_512_digest_obj) },
{ MP_ROM_QSTR(MP_QSTR___del__), MP_ROM_PTR(&mod_trezorcrypto_Sha3_512___del___obj) },
{ MP_ROM_QSTR(MP_QSTR_block_size), MP_OBJ_NEW_SMALL_INT(SHA3_512_BLOCK_LENGTH) },
{ MP_ROM_QSTR(MP_QSTR_digest_size), MP_OBJ_NEW_SMALL_INT(SHA3_512_DIGEST_LENGTH) },
2016-04-20 10:40:08 -07:00
};
2017-06-14 09:47:38 -07:00
STATIC MP_DEFINE_CONST_DICT(mod_trezorcrypto_Sha3_512_locals_dict, mod_trezorcrypto_Sha3_512_locals_dict_table);
2016-04-20 10:40:08 -07:00
2017-06-14 09:47:38 -07:00
STATIC const mp_obj_type_t mod_trezorcrypto_Sha3_512_type = {
2016-04-20 10:40:08 -07:00
{ &mp_type_type },
.name = MP_QSTR_Sha3_512,
2017-06-14 09:47:38 -07:00
.make_new = mod_trezorcrypto_Sha3_512_make_new,
.locals_dict = (void*)&mod_trezorcrypto_Sha3_512_locals_dict,
2016-04-20 10:40:08 -07:00
};