Home
last modified time | relevance | path

Searched refs:x509_pm (Results 1 – 3 of 3) sorted by relevance

/third_party/libwebsockets/lib/tls/mbedtls/wrapper/platform/
Dssl_pm.c54 struct x509_pm struct
245 struct x509_pm *ca_pm = (struct x509_pm *)ssl->client_CA->x509_pm; in ssl_pm_reload_crt()
251 struct x509_pm *crt_pm = (struct x509_pm *)ssl->cert->x509->x509_pm; in ssl_pm_reload_crt()
345 struct x509_pm *x509_pm = (struct x509_pm *)ssl->session->peer->x509_pm; in ssl_pm_handshake() local
347 x509_pm->ex_crt = (mbedtls_x509_crt *)mbedtls_ssl_get_peer_cert(&ssl_pm->ssl); in ssl_pm_handshake()
370 struct x509_pm *x509_pm = (struct x509_pm *)ssl_ctx->cert->x509->x509_pm; in ssl_ctx_get_mbedtls_x509_crt() local
372 if (!x509_pm) in ssl_ctx_get_mbedtls_x509_crt()
375 return x509_pm->x509_crt; in ssl_ctx_get_mbedtls_x509_crt()
381 struct x509_pm *x509_pm = (struct x509_pm *)ssl->session->peer->x509_pm; in ssl_get_peer_mbedtls_x509_crt() local
383 if (!x509_pm) in ssl_get_peer_mbedtls_x509_crt()
[all …]
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/internal/
Dssl_types.h121 void *x509_pm; member
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/library/
Dssl_lib.c229 mbedtls_x509_crt **px = (mbedtls_x509_crt **)ctx->client_CA->x509_pm; in SSL_CTX_new()