Lines Matching refs:MBEDTLS_PRIVATE
48 unsigned char MBEDTLS_PRIVATE(name)[MBEDTLS_SSL_TICKET_KEY_NAME_BYTES];
51 mbedtls_time_t MBEDTLS_PRIVATE(generation_time); /*!< key generation timestamp (seconds) */
56 uint32_t MBEDTLS_PRIVATE(lifetime);
58 mbedtls_cipher_context_t MBEDTLS_PRIVATE(ctx); /*!< context for auth enc/decryption */
60 mbedtls_svc_key_id_t MBEDTLS_PRIVATE(key); /*!< key used for auth enc/decryption */
61 psa_algorithm_t MBEDTLS_PRIVATE(alg); /*!< algorithm of auth enc/decryption */
62 psa_key_type_t MBEDTLS_PRIVATE(key_type); /*!< key type */
63 size_t MBEDTLS_PRIVATE(key_bits); /*!< key length in bits */
72 mbedtls_ssl_ticket_key MBEDTLS_PRIVATE(keys)[2]; /*!< ticket protection keys */
73 unsigned char MBEDTLS_PRIVATE(active); /*!< index of the currently active key */
75 uint32_t MBEDTLS_PRIVATE(ticket_lifetime); /*!< lifetime of tickets in seconds */
78 int(*MBEDTLS_PRIVATE(f_rng))(void *, unsigned char *, size_t);
79 void *MBEDTLS_PRIVATE(p_rng); /*!< context for the RNG function */
82 mbedtls_threading_mutex_t MBEDTLS_PRIVATE(mutex);