Symbol: OSSL_PARAM_set_octet_string
crypto/openssl/crypto/evp/ctrl_params_translate.c
688
return OSSL_PARAM_set_octet_string(ctx->params, ctx->p2,
crypto/openssl/crypto/param_build_set.c
65
return OSSL_PARAM_set_octet_string(p, data, data_len);
crypto/openssl/include/openssl/params.h
139
int OSSL_PARAM_set_octet_string(OSSL_PARAM *p, const void *val, size_t len);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.c
272
&& !OSSL_PARAM_set_octet_string(p, ctx->base.oiv, ctx->base.ivlen)
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.c
279
&& !OSSL_PARAM_set_octet_string(p, ctx->base.iv, ctx->base.ivlen)
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv.c
184
|| !OSSL_PARAM_set_octet_string(p, ctx->tag, sizeof(ctx->tag))) {
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
444
if (!OSSL_PARAM_set_octet_string(p, ctx->base.oiv, ctx->base.ivlen)
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb.c
456
if (!OSSL_PARAM_set_octet_string(p, ctx->base.iv, ctx->base.ivlen)
crypto/openssl/providers/implementations/ciphers/cipher_aes_siv.c
160
|| !OSSL_PARAM_set_octet_string(p, &sctx->tag.byte, ctx->taglen)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
614
&& !OSSL_PARAM_set_octet_string(p, &ctx->oiv, ctx->ivlen)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon.c
621
&& !OSSL_PARAM_set_octet_string(p, &ctx->iv, ctx->ivlen)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
174
if (!OSSL_PARAM_set_octet_string(p, ctx->iv, p->data_size)
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
187
if (!OSSL_PARAM_set_octet_string(p, ctx->iv, p->data_size)
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
187
if (!OSSL_PARAM_set_octet_string(p, ctx->iv, ctx->ivlen)
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
201
if (!OSSL_PARAM_set_octet_string(p, ctx->iv, ctx->ivlen)
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
224
if (!OSSL_PARAM_set_octet_string(p, ctx->buf, sz)) {
crypto/openssl/providers/implementations/kdfs/hkdf.c
380
else if (!OSSL_PARAM_set_octet_string(p, ctx->info, ctx->info_len))
crypto/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
314
if (!OSSL_PARAM_set_octet_string(p, ecx->pubkey, ecx->keylen))
crypto/openssl/providers/implementations/keymgmt/ml_dsa_kmgmt.c
346
&& !OSSL_PARAM_set_octet_string(p, seed, ML_DSA_SEED_BYTES))
crypto/openssl/providers/implementations/keymgmt/ml_dsa_kmgmt.c
350
&& !OSSL_PARAM_set_octet_string(p, priv,
crypto/openssl/providers/implementations/keymgmt/ml_dsa_kmgmt.c
355
&& !OSSL_PARAM_set_octet_string(p, pub,
crypto/openssl/providers/implementations/keymgmt/slh_dsa_kmgmt.c
199
&& !OSSL_PARAM_set_octet_string(p, priv,
crypto/openssl/providers/implementations/keymgmt/slh_dsa_kmgmt.c
207
&& !OSSL_PARAM_set_octet_string(p, pub,
crypto/openssl/providers/implementations/keymgmt/template_kmgmt.c
271
if (!OSSL_PARAM_set_octet_string(p, NULL, 0))
crypto/openssl/providers/implementations/signature/dsa_sig.c
680
&& !OSSL_PARAM_set_octet_string(p,
crypto/openssl/providers/implementations/signature/ecdsa_sig.c
680
if (p != NULL && !OSSL_PARAM_set_octet_string(p, ctx->aid_len == 0 ? NULL : ctx->aid_buf, ctx->aid_len))
crypto/openssl/providers/implementations/signature/eddsa_sig.c
804
&& !OSSL_PARAM_set_octet_string(p,
crypto/openssl/providers/implementations/signature/ml_dsa_sig.c
323
&& !OSSL_PARAM_set_octet_string(p,
crypto/openssl/providers/implementations/signature/rsa_sig.c
1402
if (aid == NULL || !OSSL_PARAM_set_octet_string(p, aid, aid_len))
crypto/openssl/providers/implementations/signature/slh_dsa_sig.c
335
&& !OSSL_PARAM_set_octet_string(p,
crypto/openssl/providers/implementations/signature/sm2_sig.c
412
&& !OSSL_PARAM_set_octet_string(p,
crypto/openssl/test/params_api_test.c
717
|| !TEST_true(OSSL_PARAM_set_octet_string(cp, "abcdefghi",
crypto/openssl/test/tls-provider.c
2962
&& !OSSL_PARAM_set_octet_string(p, pxor_sigctx->aid, pxor_sigctx->aid_len))