Symbol: OSSL_PARAM_set_octet_ptr
crypto/openssl/crypto/evp/ctrl_params_translate.c
691
return OSSL_PARAM_set_octet_ptr(ctx->params, *(void **)ctx->p2,
crypto/openssl/include/openssl/params.h
146
int OSSL_PARAM_set_octet_ptr(OSSL_PARAM *p, const void *val,
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
422
if (p != NULL && !OSSL_PARAM_set_octet_ptr(p, prsactx->oaep_label, prsactx->oaep_labellen))
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.c
273
&& !OSSL_PARAM_set_octet_ptr(p, &ctx->base.oiv, ctx->base.ivlen)) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.c
280
&& !OSSL_PARAM_set_octet_ptr(p, &ctx->base.iv, ctx->base.ivlen)) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
445
&& !OSSL_PARAM_set_octet_ptr(p, &ctx->base.oiv, ctx->base.ivlen)) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
457
&& !OSSL_PARAM_set_octet_ptr(p, &ctx->base.iv, ctx->base.ivlen)) {
crypto/openssl/providers/implementations/ciphers/cipher_null.c
140
&& !OSSL_PARAM_set_octet_ptr(p, ctx->tlsmac, ctx->tlsmacsize)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
613
&& !OSSL_PARAM_set_octet_ptr(p, &ctx->oiv, ctx->ivlen)
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
620
&& !OSSL_PARAM_set_octet_ptr(p, &ctx->iv, ctx->ivlen)
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
637
&& !OSSL_PARAM_set_octet_ptr(p, ctx->tlsmac, ctx->tlsmacsize)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
175
&& !OSSL_PARAM_set_octet_ptr(p, &ctx->iv, p->data_size)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
188
&& !OSSL_PARAM_set_octet_ptr(p, &ctx->iv, p->data_size)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
188
&& !OSSL_PARAM_set_octet_ptr(p, &ctx->iv, ctx->ivlen)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
202
&& !OSSL_PARAM_set_octet_ptr(p, &ctx->iv, ctx->ivlen)) {
crypto/openssl/providers/implementations/exchange/dh_exch.c
533
&& !OSSL_PARAM_set_octet_ptr(p, pdhctx->kdf_ukm, pdhctx->kdf_ukmlen))
crypto/openssl/providers/implementations/exchange/ecdh_exch.c
420
if (p != NULL && !OSSL_PARAM_set_octet_ptr(p, pectx->kdf_ukm, pectx->kdf_ukmlen))
crypto/openssl/test/params_api_test.c
737
|| !TEST_true(OSSL_PARAM_set_octet_ptr(cp, &ul, sizeof(ul)))