2018-10-24 23:18:05 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 2018 Merlok
|
|
|
|
//
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// crypto commands
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef LIBPCRYPTO_H
|
|
|
|
#define LIBPCRYPTO_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2018-11-08 00:05:02 +08:00
|
|
|
#include <stdbool.h>
|
2018-10-24 23:18:05 +08:00
|
|
|
#include <stddef.h>
|
2018-11-14 01:02:02 +08:00
|
|
|
#include <mbedtls/pk.h>
|
2018-10-24 23:18:05 +08:00
|
|
|
|
2019-04-06 06:52:55 +08:00
|
|
|
int aes_encode(uint8_t *iv, uint8_t *key, uint8_t *input, uint8_t *output, int length);
|
|
|
|
int aes_decode(uint8_t *iv, uint8_t *key, uint8_t *input, uint8_t *output, int length);
|
|
|
|
int aes_cmac(uint8_t *iv, uint8_t *key, uint8_t *input, uint8_t *mac, int length);
|
|
|
|
int aes_cmac8(uint8_t *iv, uint8_t *key, uint8_t *input, uint8_t *mac, int length);
|
2018-10-24 23:18:05 +08:00
|
|
|
|
2019-04-06 06:52:55 +08:00
|
|
|
int sha256hash(uint8_t *input, int length, uint8_t *hash);
|
|
|
|
int sha512hash(uint8_t *input, int length, uint8_t *hash);
|
2018-11-08 00:05:02 +08:00
|
|
|
|
2019-07-28 05:48:52 +08:00
|
|
|
int ecdsa_key_create(mbedtls_ecp_group_id curveid, uint8_t *key_d, uint8_t *key_xy);
|
2019-07-28 05:44:23 +08:00
|
|
|
int ecdsa_public_key_from_pk(mbedtls_pk_context *pk, mbedtls_ecp_group_id curveid, uint8_t *key, size_t keylen);
|
|
|
|
int ecdsa_signature_create(mbedtls_ecp_group_id curveid, uint8_t *key_d, uint8_t *key_xy, uint8_t *input, int length, uint8_t *signature, size_t *signaturelen, bool hash);
|
|
|
|
int ecdsa_signature_verify(mbedtls_ecp_group_id curveid, uint8_t *key_xy, uint8_t *input, int length, uint8_t *signature, size_t signaturelen, bool hash);
|
|
|
|
int ecdsa_signature_r_s_verify(mbedtls_ecp_group_id curveid, uint8_t *key_xy, uint8_t *input, int length, uint8_t *r_s, size_t r_s_len, bool hash);
|
|
|
|
|
2019-04-06 06:52:55 +08:00
|
|
|
char *ecdsa_get_error(int ret);
|
2018-11-08 00:05:02 +08:00
|
|
|
|
2019-04-06 06:52:55 +08:00
|
|
|
int ecdsa_nist_test(bool verbose);
|
2018-11-08 00:05:02 +08:00
|
|
|
|
2018-10-24 23:18:05 +08:00
|
|
|
#endif /* libpcrypto.h */
|