Home
last modified time | relevance | path

Searched refs:xTemplate (Results 1 – 2 of 2) sorted by relevance

/FreeRTOS-Plus/Demo/corePKCS11_Windows_Simulator/examples/
A Ddemo_helpers.c178 CK_ATTRIBUTE xTemplate = { 0 }; in vExportPublicKey() local
196 xTemplate.type = CKA_KEY_TYPE; in vExportPublicKey()
197 xTemplate.pValue = &xKeyType; in vExportPublicKey()
198 xTemplate.ulValueLen = sizeof( xKeyType ); in vExportPublicKey()
201 &xTemplate, in vExportPublicKey()
210 xTemplate.type = CKA_EC_POINT; in vExportPublicKey()
211 xTemplate.pValue = NULL; in vExportPublicKey()
212 xTemplate.ulValueLen = 0; in vExportPublicKey()
215 &xTemplate, in vExportPublicKey()
223 *pulDerPublicKeyLength = xTemplate.ulValueLen; in vExportPublicKey()
[all …]
/FreeRTOS-Plus/Source/Application-Protocols/network_transport/
A Dtransport_mbedtls_pkcs11.c573 CK_ATTRIBUTE xTemplate = { 0 }; in readCertificateIntoContext() local
592 xTemplate.type = CKA_VALUE; in readCertificateIntoContext()
593 xTemplate.ulValueLen = 0; in readCertificateIntoContext()
594 xTemplate.pValue = NULL; in readCertificateIntoContext()
597 &xTemplate, in readCertificateIntoContext()
604 xTemplate.pValue = pvPortMalloc( xTemplate.ulValueLen ); in readCertificateIntoContext()
606 if( NULL == xTemplate.pValue ) in readCertificateIntoContext()
617 &xTemplate, in readCertificateIntoContext()
625 ( const unsigned char * ) xTemplate.pValue, in readCertificateIntoContext()
626 xTemplate.ulValueLen ); in readCertificateIntoContext()
[all …]

Completed in 9 milliseconds