Lines Matching refs:items
150 static void rsa_debug( const void *ctx, mbedtls_pk_debug_item *items ) in rsa_debug() argument
152 items->type = MBEDTLS_PK_DEBUG_MPI; in rsa_debug()
153 items->name = "rsa.N"; in rsa_debug()
154 items->value = &( ((mbedtls_rsa_context *) ctx)->N ); in rsa_debug()
156 items++; in rsa_debug()
158 items->type = MBEDTLS_PK_DEBUG_MPI; in rsa_debug()
159 items->name = "rsa.E"; in rsa_debug()
160 items->value = &( ((mbedtls_rsa_context *) ctx)->E ); in rsa_debug()
266 static void eckey_debug( const void *ctx, mbedtls_pk_debug_item *items ) in eckey_debug() argument
268 items->type = MBEDTLS_PK_DEBUG_ECP; in eckey_debug()
269 items->name = "eckey.Q"; in eckey_debug()
270 items->value = &( ((mbedtls_ecp_keypair *) ctx)->Q ); in eckey_debug()