]> git.zerfleddert.de Git - proxmark3-svn/blame - client/crypto/libpcrypto.h
Merge pull request #969 from pwpiwi/gcc10_fixes
[proxmark3-svn] / client / crypto / libpcrypto.h
CommitLineData
ae3340a0
OM
1//-----------------------------------------------------------------------------
2// Copyright (C) 2018 Merlok
3//
4// This code is licensed to you under the terms of the GNU GPL, version 2 or,
5// at your option, any later version. See the LICENSE.txt file for the text of
6// the license.
7//-----------------------------------------------------------------------------
8// crypto commands
9//-----------------------------------------------------------------------------
10
11#ifndef LIBPCRYPTO_H
12#define LIBPCRYPTO_H
13
14#include <stdint.h>
700d8687 15#include <stdbool.h>
ae3340a0 16#include <stddef.h>
6b882a39 17#include <mbedtls/pk.h>
ae3340a0
OM
18
19extern int aes_encode(uint8_t *iv, uint8_t *key, uint8_t *input, uint8_t *output, int length);
20extern int aes_decode(uint8_t *iv, uint8_t *key, uint8_t *input, uint8_t *output, int length);
c8a0f550
OM
21extern int aes_cmac(uint8_t *iv, uint8_t *key, uint8_t *input, uint8_t *mac, int length);
22extern int aes_cmac8(uint8_t *iv, uint8_t *key, uint8_t *input, uint8_t *mac, int length);
ae3340a0 23
700d8687 24extern int sha256hash(uint8_t *input, int length, uint8_t *hash);
9f596ec7 25extern int sha512hash(uint8_t *input, int length, uint8_t *hash);
700d8687 26
3a5ffba7 27extern int ecdsa_key_create(mbedtls_ecp_group_id curveID, uint8_t * key_d, uint8_t *key_xy);
28extern int ecdsa_public_key_from_pk(mbedtls_pk_context *pk, mbedtls_ecp_group_id curveID, uint8_t *key, size_t keylen);
29extern 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);
30extern 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);
31extern 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);
700d8687
OM
32extern char *ecdsa_get_error(int ret);
33
34extern int ecdsa_nist_test(bool verbose);
35
ae3340a0 36#endif /* libpcrypto.h */
Impressum, Datenschutz