ReactOS 0.4.15-dev-7953-g1f49173
mbedtls_pk_info_t Struct Reference

#include <pk_internal.h>

Collaboration diagram for mbedtls_pk_info_t:

Public Attributes

mbedtls_pk_type_t type
 
const charname
 
size_t(* get_bitlen )(const void *)
 
int(* can_do )(mbedtls_pk_type_t type)
 
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)
 
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)
 
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)
 
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)
 
int(* check_pair_func )(const void *pub, const void *prv)
 
void *(* ctx_alloc_func )(void)
 
void(* ctx_free_func )(void *ctx)
 
void(* debug_func )(const void *ctx, mbedtls_pk_debug_item *items)
 

Detailed Description

Definition at line 61 of file pk_internal.h.

Member Data Documentation

◆ can_do

int(* mbedtls_pk_info_t::can_do) (mbedtls_pk_type_t type)

Tell if the context implements this type (e.g. ECKEY can do ECDSA)

Definition at line 73 of file pk_internal.h.

◆ check_pair_func

int(* mbedtls_pk_info_t::check_pair_func) (const void *pub, const void *prv)

Check public-private key pair

Definition at line 115 of file pk_internal.h.

◆ ctx_alloc_func

void *(* mbedtls_pk_info_t::ctx_alloc_func) (void)

Allocate a new context

Definition at line 118 of file pk_internal.h.

◆ ctx_free_func

void(* mbedtls_pk_info_t::ctx_free_func) (void *ctx)

Free the given context

Definition at line 121 of file pk_internal.h.

◆ debug_func

void(* mbedtls_pk_info_t::debug_func) (const void *ctx, mbedtls_pk_debug_item *items)

Interface with the debug module

Definition at line 132 of file pk_internal.h.

◆ decrypt_func

int(* mbedtls_pk_info_t::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)

Decrypt message

Definition at line 103 of file pk_internal.h.

◆ encrypt_func

int(* mbedtls_pk_info_t::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)

Encrypt message

Definition at line 109 of file pk_internal.h.

◆ get_bitlen

size_t(* mbedtls_pk_info_t::get_bitlen) (const void *)

Get key size in bits

Definition at line 70 of file pk_internal.h.

◆ name

const char* mbedtls_pk_info_t::name

Type name

Definition at line 67 of file pk_internal.h.

◆ sign_func

int(* mbedtls_pk_info_t::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)

Make signature

Definition at line 81 of file pk_internal.h.

◆ type

mbedtls_pk_type_t mbedtls_pk_info_t::type

Public key type

Definition at line 64 of file pk_internal.h.

◆ verify_func

int(* mbedtls_pk_info_t::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)

Verify signature

Definition at line 76 of file pk_internal.h.


The documentation for this struct was generated from the following file: