proxmark3/common/mbedtls/pk_internal.h

139 lines
4.5 KiB
C
Raw Normal View History

2018-11-08 00:05:02 +08:00
/**
* \file pk_internal.h
*
* \brief Public Key abstraction layer: wrapper functions
*/
/*
2021-05-14 15:53:00 +08:00
* Copyright The Mbed TLS Contributors
* SPDX-License-Identifier: Apache-2.0
2018-11-08 00:05:02 +08:00
*
2021-05-14 15:53:00 +08:00
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
2018-11-08 00:05:02 +08:00
*
2021-05-14 15:53:00 +08:00
* http://www.apache.org/licenses/LICENSE-2.0
2018-11-08 00:05:02 +08:00
*
2021-05-14 15:53:00 +08:00
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
2018-11-08 00:05:02 +08:00
*/
#ifndef MBEDTLS_PK_WRAP_H
#define MBEDTLS_PK_WRAP_H
#if !defined(MBEDTLS_CONFIG_FILE)
2021-05-14 15:53:00 +08:00
#include "mbedtls/config.h"
2018-11-08 00:05:02 +08:00
#else
#include MBEDTLS_CONFIG_FILE
#endif
2021-05-14 15:53:00 +08:00
#include "mbedtls/pk.h"
2018-11-08 00:05:02 +08:00
2021-05-14 17:00:46 +08:00
struct mbedtls_pk_info_t {
2018-11-08 00:05:02 +08:00
/** Public key type */
mbedtls_pk_type_t type;
/** Type name */
const char *name;
/** Get key size in bits */
2021-05-14 17:00:46 +08:00
size_t (*get_bitlen)(const void *);
2018-11-08 00:05:02 +08:00
/** Tell if the context implements this type (e.g. ECKEY can do ECDSA) */
2021-05-14 17:00:46 +08:00
int (*can_do)(mbedtls_pk_type_t type);
2018-11-08 00:05:02 +08:00
/** Verify signature */
2021-05-14 17:00:46 +08:00
int (*verify_func)(void *ctx, mbedtls_md_type_t md_alg,
const unsigned char *hash, size_t hash_len,
const unsigned char *sig, size_t sig_len);
2018-11-08 00:05:02 +08:00
/** Make signature */
2021-05-14 17:00:46 +08:00
int (*sign_func)(void *ctx, mbedtls_md_type_t md_alg,
const unsigned char *hash, size_t hash_len,
unsigned char *sig, size_t *sig_len,
int (*f_rng)(void *, unsigned char *, size_t),
void *p_rng);
2021-05-14 15:53:00 +08:00
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
/** Verify signature (restartable) */
2021-05-14 17:00:46 +08:00
int (*verify_rs_func)(void *ctx, mbedtls_md_type_t md_alg,
const unsigned char *hash, size_t hash_len,
const unsigned char *sig, size_t sig_len,
void *rs_ctx);
2021-05-14 15:53:00 +08:00
/** Make signature (restartable) */
2021-05-14 17:00:46 +08:00
int (*sign_rs_func)(void *ctx, mbedtls_md_type_t md_alg,
const unsigned char *hash, size_t hash_len,
unsigned char *sig, size_t *sig_len,
int (*f_rng)(void *, unsigned char *, size_t),
void *p_rng, void *rs_ctx);
2021-05-14 15:53:00 +08:00
#endif /* MBEDTLS_ECDSA_C && MBEDTLS_ECP_RESTARTABLE */
2018-11-08 00:05:02 +08:00
/** Decrypt message */
2021-05-14 17:00:46 +08:00
int (*decrypt_func)(void *ctx, const unsigned char *input, size_t ilen,
unsigned char *output, size_t *olen, size_t osize,
int (*f_rng)(void *, unsigned char *, size_t),
void *p_rng);
2018-11-08 00:05:02 +08:00
/** Encrypt message */
2021-05-14 17:00:46 +08:00
int (*encrypt_func)(void *ctx, const unsigned char *input, size_t ilen,
unsigned char *output, size_t *olen, size_t osize,
int (*f_rng)(void *, unsigned char *, size_t),
void *p_rng);
2018-11-08 00:05:02 +08:00
/** Check public-private key pair */
2021-05-14 17:00:46 +08:00
int (*check_pair_func)(const void *pub, const void *prv);
2018-11-08 00:05:02 +08:00
/** Allocate a new context */
2021-05-14 17:00:46 +08:00
void *(*ctx_alloc_func)(void);
2018-11-08 00:05:02 +08:00
/** Free the given context */
2021-05-14 17:00:46 +08:00
void (*ctx_free_func)(void *ctx);
2021-05-14 15:53:00 +08:00
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
/** Allocate the restart context */
2021-05-14 17:00:46 +08:00
void *(*rs_alloc_func)(void);
2021-05-14 15:53:00 +08:00
/** Free the restart context */
2021-05-14 17:00:46 +08:00
void (*rs_free_func)(void *rs_ctx);
2021-05-14 15:53:00 +08:00
#endif /* MBEDTLS_ECDSA_C && MBEDTLS_ECP_RESTARTABLE */
2018-11-08 00:05:02 +08:00
/** Interface with the debug module */
2021-05-14 17:00:46 +08:00
void (*debug_func)(const void *ctx, mbedtls_pk_debug_item *items);
2018-11-08 00:05:02 +08:00
};
#if defined(MBEDTLS_PK_RSA_ALT_SUPPORT)
/* Container for RSA-alt */
2021-05-14 17:00:46 +08:00
typedef struct {
2018-11-08 00:05:02 +08:00
void *key;
mbedtls_pk_rsa_alt_decrypt_func decrypt_func;
mbedtls_pk_rsa_alt_sign_func sign_func;
mbedtls_pk_rsa_alt_key_len_func key_len_func;
} mbedtls_rsa_alt_context;
#endif
#if defined(MBEDTLS_RSA_C)
extern const mbedtls_pk_info_t mbedtls_rsa_info;
#endif
#if defined(MBEDTLS_ECP_C)
extern const mbedtls_pk_info_t mbedtls_eckey_info;
extern const mbedtls_pk_info_t mbedtls_eckeydh_info;
#endif
#if defined(MBEDTLS_ECDSA_C)
extern const mbedtls_pk_info_t mbedtls_ecdsa_info;
#endif
#if defined(MBEDTLS_PK_RSA_ALT_SUPPORT)
extern const mbedtls_pk_info_t mbedtls_rsa_alt_info;
#endif
2021-05-14 15:53:00 +08:00
#if defined(MBEDTLS_USE_PSA_CRYPTO)
extern const mbedtls_pk_info_t mbedtls_pk_opaque_info;
#endif
2018-11-08 00:05:02 +08:00
#endif /* MBEDTLS_PK_WRAP_H */