Home
last modified time | relevance | path

Searched refs:MBEDTLS_PRIVATE (Results 1 – 12 of 12) sorted by relevance

/mcuboot-latest/ext/mbedtls-asn1/include/mbedtls/
Dasn1.h148 int MBEDTLS_PRIVATE(tag); /**< ASN1 type, e.g. MBEDTLS_ASN1_UTF8_STRING. */
149 size_t MBEDTLS_PRIVATE(len); /**< ASN1 length, in octets. */
150 unsigned char *MBEDTLS_PRIVATE(p); /**< ASN1 data, e.g. in ASCII. */
159 size_t MBEDTLS_PRIVATE(len); /**< ASN1 length, in octets. */
160 …unsigned char MBEDTLS_PRIVATE(unused_bits); /**< Number of unused bits at the end of the string */
161 unsigned char *MBEDTLS_PRIVATE(p); /**< Raw ASN1 data for the bit string */
170 …mbedtls_asn1_buf MBEDTLS_PRIVATE(buf); /**< Buffer containing the given ASN.1 it…
171 struct mbedtls_asn1_sequence *MBEDTLS_PRIVATE(next); /**< The next entry in the sequence. */
180 mbedtls_asn1_buf MBEDTLS_PRIVATE(oid); /**< The object identifier. */
181 mbedtls_asn1_buf MBEDTLS_PRIVATE(val); /**< The named value. */
[all …]
Drsa.h84 int MBEDTLS_PRIVATE(ver); /*!< Reserved for internal purposes.
88 size_t MBEDTLS_PRIVATE(len); /*!< The size of \p N in Bytes. */
90 mbedtls_mpi MBEDTLS_PRIVATE(N); /*!< The public modulus. */
91 mbedtls_mpi MBEDTLS_PRIVATE(E); /*!< The public exponent. */
93 mbedtls_mpi MBEDTLS_PRIVATE(D); /*!< The private exponent. */
94 mbedtls_mpi MBEDTLS_PRIVATE(P); /*!< The first prime factor. */
95 mbedtls_mpi MBEDTLS_PRIVATE(Q); /*!< The second prime factor. */
97 mbedtls_mpi MBEDTLS_PRIVATE(DP); /*!< <code>D % (P - 1)</code>. */
98 mbedtls_mpi MBEDTLS_PRIVATE(DQ); /*!< <code>D % (Q - 1)</code>. */
99 mbedtls_mpi MBEDTLS_PRIVATE(QP); /*!< <code>1 / (Q % P)</code>. */
[all …]
Decp.h144 mbedtls_ecp_group_id MBEDTLS_PRIVATE(grp_id); /*!< An internal identifier. */
145 uint16_t MBEDTLS_PRIVATE(tls_id); /*!< The TLS NamedCurve identifier. */
146 uint16_t MBEDTLS_PRIVATE(bit_size); /*!< The curve size in bits. */
147 const char *MBEDTLS_PRIVATE(name); /*!< A human-friendly name. */
163 mbedtls_mpi MBEDTLS_PRIVATE(X); /*!< The X coordinate of the ECP point. */
164 mbedtls_mpi MBEDTLS_PRIVATE(Y); /*!< The Y coordinate of the ECP point. */
165 mbedtls_mpi MBEDTLS_PRIVATE(Z); /*!< The Z coordinate of the ECP point. */
232 unsigned int MBEDTLS_PRIVATE(h); /*!< \internal 1 if the constants are static. */
233 int (*MBEDTLS_PRIVATE(modp))(mbedtls_mpi *); /*!< The function for fast pseudo-reduction
235 int (*MBEDTLS_PRIVATE(t_pre))(mbedtls_ecp_point *, void *); /*!< Unused. */
[all …]
Dpk.h92 mbedtls_md_type_t MBEDTLS_PRIVATE(mgf1_hash_id);
93 int MBEDTLS_PRIVATE(expected_salt_len);
164 mbedtls_pk_debug_type MBEDTLS_PRIVATE(type);
165 const char *MBEDTLS_PRIVATE(name);
166 void *MBEDTLS_PRIVATE(value);
182 const mbedtls_pk_info_t * MBEDTLS_PRIVATE(pk_info); /**< Public key information */
183 void * MBEDTLS_PRIVATE(pk_ctx); /**< Underlying public key context */
192 const mbedtls_pk_info_t * MBEDTLS_PRIVATE(pk_info); /**< Public key information */
193 void * MBEDTLS_PRIVATE(rs_ctx); /**< Underlying restart context */
209 return( (mbedtls_rsa_context *) (pk).MBEDTLS_PRIVATE(pk_ctx) ); in mbedtls_pk_rsa()
[all …]
Dprivate_access.h27 #define MBEDTLS_PRIVATE(member) private_##member macro
29 #define MBEDTLS_PRIVATE(member) member macro
Decdsa.h107 mbedtls_ecp_restart_ctx MBEDTLS_PRIVATE(ecp); /*!< base context for ECP restart and
109 mbedtls_ecdsa_restart_ver_ctx *MBEDTLS_PRIVATE(ver); /*!< ecdsa_verify() sub-context */
110 mbedtls_ecdsa_restart_sig_ctx *MBEDTLS_PRIVATE(sig); /*!< ecdsa_sign() sub-context */
112 mbedtls_ecdsa_restart_det_ctx *MBEDTLS_PRIVATE(det); /*!< ecdsa_sign_det() sub-context */
Dthreading.h41 pthread_mutex_t MBEDTLS_PRIVATE(mutex);
45 char MBEDTLS_PRIVATE(is_valid);
Dmd.h91 const mbedtls_md_info_t *MBEDTLS_PRIVATE(md_info);
94 void *MBEDTLS_PRIVATE(md_ctx);
97 void *MBEDTLS_PRIVATE(hmac_ctx);
Doid.h432 const char *MBEDTLS_PRIVATE(asn1); /*!< OID ASN.1 representation */
433 size_t MBEDTLS_PRIVATE(asn1_len); /*!< length of asn1 */
435 const char *MBEDTLS_PRIVATE(name); /*!< official name (e.g. from RFC) */
436 const char *MBEDTLS_PRIVATE(description); /*!< human friendly description */
Dbignum.h183 int MBEDTLS_PRIVATE(s); /*!< Sign: -1 if the mpi is negative, 1 otherwise */
184 size_t MBEDTLS_PRIVATE(n); /*!< total # of limbs */
185 mbedtls_mpi_uint *MBEDTLS_PRIVATE(p); /*!< pointer to limbs */
Dplatform.h367 char MBEDTLS_PRIVATE(dummy); /**< A placeholder member, as empty structs are not portable. */
/mcuboot-latest/boot/bootutil/include/bootutil/crypto/
Dcommon.h15 #define MBEDTLS_CONTEXT_MEMBER(X) MBEDTLS_PRIVATE(X)
24 #define ASN1_CONTEXT_MEMBER(X) MBEDTLS_PRIVATE(X)