| /freebsd/crypto/openssl/ssl/ |
| H A D | ssl_conf.c | 111 static void ssl_set_option(SSL_CONF_CTX *cctx, unsigned int name_flags, in ssl_set_option() argument 116 if (cctx->poptions == NULL) in ssl_set_option() 123 pflags = cctx->pcert_flags; in ssl_set_option() 127 pflags = cctx->pvfy_flags; in ssl_set_option() 132 *cctx->poptions |= option_value; in ssl_set_option() 134 *cctx->poptions &= ~option_value; in ssl_set_option() 146 static int ssl_match_option(SSL_CONF_CTX *cctx, const ssl_flag_tbl *tbl, in ssl_match_option() argument 150 if (!(cctx->flags & tbl->name_flags & SSL_TFLAG_BOTH)) in ssl_match_option() 158 ssl_set_option(cctx, tbl->name_flags, tbl->option_value, onoff); in ssl_match_option() 164 SSL_CONF_CTX *cctx = usr; in ssl_set_option_list() local [all …]
|
| H A D | ssl_mcnf.c | 25 SSL_CONF_CTX *cctx = NULL; in ssl_do_config() local 49 cctx = SSL_CONF_CTX_new(); in ssl_do_config() 50 if (cctx == NULL) { in ssl_do_config() 60 SSL_CONF_CTX_set_ssl(cctx, s); in ssl_do_config() 64 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx); in ssl_do_config() 74 SSL_CONF_CTX_set_flags(cctx, flags); in ssl_do_config() 82 rv = SSL_CONF_cmd(cctx, cmdstr, arg); in ssl_do_config() 86 if (!SSL_CONF_CTX_finish(cctx)) in ssl_do_config() 90 SSL_CONF_CTX_free(cctx); in ssl_do_config()
|
| /freebsd/crypto/openssl/crypto/evp/ |
| H A D | e_aria.c | 513 EVP_ARIA_CCM_CTX *cctx = EVP_C_DATA(EVP_ARIA_CCM_CTX, ctx); in aria_ccm_init_key() local 521 &cctx->ks.ks); in aria_ccm_init_key() 522 CRYPTO_ccm128_init(&cctx->ccm, cctx->M, cctx->L, in aria_ccm_init_key() 523 &cctx->ks, (block128_f)ossl_aria_encrypt); in aria_ccm_init_key() 528 cctx->str = NULL; in aria_ccm_init_key() 529 cctx->key_set = 1; in aria_ccm_init_key() 532 memcpy(ctx->iv, iv, 15 - cctx->L); in aria_ccm_init_key() 533 cctx->iv_set = 1; in aria_ccm_init_key() 540 EVP_ARIA_CCM_CTX *cctx = EVP_C_DATA(EVP_ARIA_CCM_CTX, c); in aria_ccm_ctrl() local 544 cctx->key_set = 0; in aria_ccm_ctrl() [all …]
|
| H A D | e_aes.c | 328 EVP_AES_CCM_CTX *cctx = EVP_C_DATA(EVP_AES_CCM_CTX, ctx); in aesni_ccm_init_key() local 340 aesni_set_encrypt_key(key, keylen, &cctx->ks.ks); in aesni_ccm_init_key() 341 CRYPTO_ccm128_init(&cctx->ccm, cctx->M, cctx->L, in aesni_ccm_init_key() 342 &cctx->ks, (block128_f)aesni_encrypt); in aesni_ccm_init_key() 343 … cctx->str = enc ? (ccm128_f)aesni_ccm64_encrypt_blocks : (ccm128_f)aesni_ccm64_decrypt_blocks; in aesni_ccm_init_key() 344 cctx->key_set = 1; in aesni_ccm_init_key() 347 memcpy(ctx->iv, iv, 15 - cctx->L); in aesni_ccm_init_key() 348 cctx->iv_set = 1; in aesni_ccm_init_key() 714 EVP_AES_CCM_CTX *cctx = EVP_C_DATA(EVP_AES_CCM_CTX, ctx); in aes_t4_ccm_init_key() local 726 aes_t4_set_encrypt_key(key, bits, &cctx->ks.ks); in aes_t4_ccm_init_key() [all …]
|
| /freebsd/sys/contrib/zstd/lib/compress/ |
| H A D | zstd_compress.c | 102 static void ZSTD_initCCtx(ZSTD_CCtx* cctx, ZSTD_customMem memManager) in ZSTD_initCCtx() argument 104 assert(cctx != NULL); in ZSTD_initCCtx() 105 ZSTD_memset(cctx, 0, sizeof(*cctx)); in ZSTD_initCCtx() 106 cctx->customMem = memManager; in ZSTD_initCCtx() 107 cctx->bmi2 = ZSTD_cpuSupportsBmi2(); in ZSTD_initCCtx() 108 { size_t const err = ZSTD_CCtx_reset(cctx, ZSTD_reset_parameters); in ZSTD_initCCtx() 119 { ZSTD_CCtx* const cctx = (ZSTD_CCtx*)ZSTD_customMalloc(sizeof(ZSTD_CCtx), customMem); in ZSTD_createCCtx_advanced() local 120 if (!cctx) return NULL; in ZSTD_createCCtx_advanced() 121 ZSTD_initCCtx(cctx, customMem); in ZSTD_createCCtx_advanced() 122 return cctx; in ZSTD_createCCtx_advanced() [all …]
|
| /freebsd/sys/contrib/openzfs/module/zstd/lib/compress/ |
| H A D | zstd_compress.c | 103 static void ZSTD_initCCtx(ZSTD_CCtx* cctx, ZSTD_customMem memManager) in ZSTD_initCCtx() argument 105 assert(cctx != NULL); in ZSTD_initCCtx() 106 ZSTD_memset(cctx, 0, sizeof(*cctx)); in ZSTD_initCCtx() 107 cctx->customMem = memManager; in ZSTD_initCCtx() 108 cctx->bmi2 = ZSTD_cpuSupportsBmi2(); in ZSTD_initCCtx() 109 { size_t const err = ZSTD_CCtx_reset(cctx, ZSTD_reset_parameters); in ZSTD_initCCtx() 120 { ZSTD_CCtx* const cctx = (ZSTD_CCtx*)ZSTD_customMalloc(sizeof(ZSTD_CCtx), customMem); in ZSTD_createCCtx_advanced() local 121 if (!cctx) return NULL; in ZSTD_createCCtx_advanced() 122 ZSTD_initCCtx(cctx, customMem); in ZSTD_createCCtx_advanced() 123 return cctx; in ZSTD_createCCtx_advanced() [all …]
|
| /freebsd/crypto/openssl/crypto/cmac/ |
| H A D | cmac.c | 27 EVP_CIPHER_CTX *cctx; member 60 ctx->cctx = EVP_CIPHER_CTX_new(); in CMAC_CTX_new() 61 if (ctx->cctx == NULL) { in CMAC_CTX_new() 71 EVP_CIPHER_CTX_reset(ctx->cctx); in CMAC_CTX_cleanup() 81 return ctx->cctx; in CMAC_CTX_get0_cipher_ctx() 89 EVP_CIPHER_CTX_free(ctx->cctx); in CMAC_CTX_free() 99 if ((bl = EVP_CIPHER_CTX_get_block_size(in->cctx)) == 0) in CMAC_CTX_copy() 101 if (!EVP_CIPHER_CTX_copy(out->cctx, in->cctx)) in CMAC_CTX_copy() 123 if (!EVP_EncryptInit_ex2(ctx->cctx, NULL, NULL, zero_iv, param)) in ossl_cmac_init() 125 block_len = EVP_CIPHER_CTX_get_block_size(ctx->cctx); in ossl_cmac_init() [all …]
|
| /freebsd/crypto/openssl/test/ |
| H A D | dtlstest.c | 72 SSL_CTX *sctx = NULL, *cctx = NULL; in test_dtls_unprocessed() local 82 &sctx, &cctx, cert, privkey))) in test_dtls_unprocessed() 86 if (!TEST_true(SSL_CTX_set_cipher_list(cctx, "AES128-SHA"))) in test_dtls_unprocessed() 91 || !TEST_true(SSL_CTX_set_cipher_list(cctx, in test_dtls_unprocessed() 101 if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl1, &clientssl1, in test_dtls_unprocessed() 140 SSL_CTX_free(cctx); in test_dtls_unprocessed() 188 SSL_CTX *sctx = NULL, *cctx = NULL; in test_dtls_drop_records() local 200 &sctx, &cctx, cert, privkey))) in test_dtls_drop_records() 206 || !TEST_true(SSL_CTX_set_cipher_list(cctx, in test_dtls_drop_records() 220 if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl, in test_dtls_drop_records() [all …]
|
| H A D | sslapitest.c | 360 SSL_CTX *cctx = NULL, *sctx = NULL; in test_keylog() local 376 &sctx, &cctx, cert, privkey))) in test_keylog() 380 SSL_CTX_set_options(cctx, SSL_OP_NO_TLSv1_3); in test_keylog() 384 if (!TEST_true(SSL_CTX_set_cipher_list(cctx, "RSA"))) in test_keylog() 387 if (!TEST_true(SSL_CTX_get_keylog_callback(cctx) == NULL) in test_keylog() 390 SSL_CTX_set_keylog_callback(cctx, client_keylog_callback); in test_keylog() 391 if (!TEST_true(SSL_CTX_get_keylog_callback(cctx) in test_keylog() 400 if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, in test_keylog() 432 SSL_CTX_free(cctx); in test_keylog() 441 SSL_CTX *cctx = NULL, *sctx = NULL; in test_keylog_no_master_key() local [all …]
|
| H A D | quicfaultstest.c | 26 SSL_CTX *cctx = SSL_CTX_new(OSSL_QUIC_client_method()); in test_basic() local 34 if (!TEST_ptr(cctx)) in test_basic() 37 if (!TEST_true(qtest_create_quic_objects(NULL, cctx, NULL, cert, privkey, 0, in test_basic() 63 SSL_CTX_free(cctx); in test_basic() 94 SSL_CTX *cctx = SSL_CTX_new(OSSL_QUIC_client_method()); in test_unknown_frame() local 104 if (!TEST_ptr(cctx)) in test_unknown_frame() 107 if (!TEST_true(qtest_create_quic_objects(NULL, cctx, NULL, cert, privkey, 0, in test_unknown_frame() 156 SSL_CTX_free(cctx); in test_unknown_frame() 180 SSL_CTX *cctx = SSL_CTX_new(OSSL_QUIC_client_method()); in test_drop_extensions() local 186 if (!TEST_ptr(cctx)) in test_drop_extensions() [all …]
|
| H A D | quicapitest.c | 55 SSL_CTX *cctx = SSL_CTX_new_ex(libctx, NULL, OSSL_QUIC_client_method()); in test_quic_write_read() local 72 if (!TEST_ptr(cctx) in test_quic_write_read() 73 || !TEST_true(qtest_create_quic_objects(libctx, cctx, sctx, in test_quic_write_read() 205 SSL_CTX_free(cctx); in test_quic_write_read() 217 SSL_CTX *cctx = SSL_CTX_new_ex(libctx, NULL, OSSL_QUIC_client_method()); in test_fin_only_blocking() local 231 if (!TEST_ptr(cctx) in test_fin_only_blocking() 232 || !TEST_true(qtest_create_quic_objects(libctx, cctx, sctx, in test_fin_only_blocking() 281 SSL_CTX_free(cctx); in test_fin_only_blocking() 348 SSL_CTX *cctx = SSL_CTX_new_ex(libctx, NULL, OSSL_QUIC_client_method()); in test_cipher_find() local 367 if (!TEST_ptr(cctx)) in test_cipher_find() [all …]
|
| H A D | fatalerrtest.c | 21 SSL_CTX *sctx = NULL, *cctx = NULL; in test_fatalerr() local 33 &sctx, &cctx, cert, privkey))) in test_fatalerr() 41 || !TEST_true(SSL_CTX_set_cipher_list(cctx, "AES256-SHA")) in test_fatalerr() 44 || !TEST_true(SSL_CTX_set_ciphersuites(cctx, in test_fatalerr() 46 || !TEST_true(create_ssl_objects(sctx, cctx, &sssl, &cssl, NULL, in test_fatalerr() 80 SSL_CTX_free(cctx); in test_fatalerr()
|
| /freebsd/crypto/heimdal/lib/gssapi/ |
| H A D | test_context.c | 114 gss_ctx_id_t *sctx, gss_ctx_id_t *cctx, in loop() argument 161 cctx, in loop() 246 wrapunwrap(gss_ctx_id_t cctx, gss_ctx_id_t sctx, int flags, gss_OID mechoid) in wrapunwrap() argument 256 maj_stat = gss_wrap(&min_stat, cctx, flags, 0, &input_token, in wrapunwrap() 283 wrapunwrap_iov(gss_ctx_id_t cctx, gss_ctx_id_t sctx, int flags, gss_OID mechoid) in wrapunwrap_iov() argument 358 maj_stat = gss_wrap_iov(&min_stat, cctx, dce_style_flag || flags & USE_CONF, 0, &conf_state, in wrapunwrap_iov() 419 getverifymic(gss_ctx_id_t cctx, gss_ctx_id_t sctx, gss_OID mechoid) in getverifymic() argument 428 maj_stat = gss_get_mic(&min_stat, cctx, 0, &input_token, in getverifymic() 506 gss_ctx_id_t cctx, sctx; in main() local 520 cctx = sctx = GSS_C_NO_CONTEXT; in main() [all …]
|
| /freebsd/usr.bin/mkuzip/ |
| H A D | mkuz_zstd.c | 49 ZSTD_CCtx *cctx; in mkuz_zstd_init() local 60 cctx = ZSTD_createCCtx(); in mkuz_zstd_init() 61 if (cctx == NULL) in mkuz_zstd_init() 64 rc = ZSTD_CCtx_setParameter(cctx, ZSTD_c_compressionLevel, in mkuz_zstd_init() 70 rc = ZSTD_CCtx_setParameter(cctx, ZSTD_c_checksumFlag, 1); in mkuz_zstd_init() 75 return (cctx); in mkuz_zstd_init() 81 ZSTD_CCtx *cctx; in mkuz_zstd_compress() local 84 cctx = p; in mkuz_zstd_compress() 86 rc = ZSTD_compress2(cctx, oblk->data, oblk->alen, iblk->data, in mkuz_zstd_compress()
|
| /freebsd/contrib/ofed/libbnxtre/ |
| H A D | main.c | 114 bool _is_chip_gen_p5(struct bnxt_re_chip_ctx *cctx) in _is_chip_gen_p5() argument 116 return (cctx->chip_num == CHIP_NUM_57508 || in _is_chip_gen_p5() 117 cctx->chip_num == CHIP_NUM_57504 || in _is_chip_gen_p5() 118 cctx->chip_num == CHIP_NUM_57502); in _is_chip_gen_p5() 121 bool _is_chip_a0(struct bnxt_re_chip_ctx *cctx) in _is_chip_a0() argument 123 return !cctx->chip_rev; in _is_chip_a0() 126 bool _is_chip_thor2(struct bnxt_re_chip_ctx *cctx) in _is_chip_thor2() argument 128 return (cctx->chip_num == CHIP_NUM_58818 || in _is_chip_thor2() 129 cctx->chip_num == CHIP_NUM_57608); in _is_chip_thor2() 132 bool _is_chip_gen_p5_thor2(struct bnxt_re_chip_ctx *cctx) in _is_chip_gen_p5_thor2() argument [all …]
|
| /freebsd/sys/dev/bnxt/bnxt_re/ |
| H A D | qplib_res.h | 72 #define BNXT_RE_PPP_ENABLED(cctx) ((cctx)->modes.db_push_mode ==\ argument 115 static inline bool _is_chip_p7(struct bnxt_qplib_chip_ctx *cctx) in _is_chip_p7() argument 117 return _is_chip_num_p7(cctx->chip_num); in _is_chip_p7() 121 static inline bool _is_chip_gen_p5(struct bnxt_qplib_chip_ctx *cctx) in _is_chip_gen_p5() argument 123 return (cctx->chip_num == CHIP_NUM_57508 || in _is_chip_gen_p5() 124 cctx->chip_num == CHIP_NUM_57504 || in _is_chip_gen_p5() 125 cctx->chip_num == CHIP_NUM_57502); in _is_chip_gen_p5() 128 static inline bool _is_chip_gen_p5_p7(struct bnxt_qplib_chip_ctx *cctx) in _is_chip_gen_p5_p7() argument 130 return (_is_chip_gen_p5(cctx) || _is_chip_p7(cctx)); in _is_chip_gen_p5_p7() 133 static inline bool _is_wqe_mode_variable(struct bnxt_qplib_chip_ctx *cctx) in _is_wqe_mode_variable() argument [all …]
|
| /freebsd/sys/contrib/openzfs/module/zstd/lib/ |
| H A D | zstd.h | 283 ZSTDLIB_API size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx); /* compatible with NULL pointer */ 293 ZSTDLIB_API size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx, 571 ZSTDLIB_API size_t ZSTD_CCtx_setParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, int value); 588 ZSTDLIB_API size_t ZSTD_CCtx_setPledgedSrcSize(ZSTD_CCtx* cctx, unsigned long long pledgedSrcSize); 610 ZSTDLIB_API size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset); 624 ZSTDLIB_API size_t ZSTD_compress2( ZSTD_CCtx* cctx, 824 ZSTDLIB_API size_t ZSTD_compressStream2( ZSTD_CCtx* cctx, 1013 ZSTDLIB_API size_t ZSTD_compress_usingCDict(ZSTD_CCtx* cctx, 1109 ZSTDLIB_API size_t ZSTD_CCtx_loadDictionary(ZSTD_CCtx* cctx, const void* dict, size_t dictSize); 1123 ZSTDLIB_API size_t ZSTD_CCtx_refCDict(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict); [all …]
|
| /freebsd/sys/contrib/zstd/lib/ |
| H A D | zstd.h | 282 ZSTDLIB_API size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx); /* compatible with NULL pointer */ 292 ZSTDLIB_API size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx, 570 ZSTDLIB_API size_t ZSTD_CCtx_setParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, int value); 587 ZSTDLIB_API size_t ZSTD_CCtx_setPledgedSrcSize(ZSTD_CCtx* cctx, unsigned long long pledgedSrcSize); 609 ZSTDLIB_API size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset); 623 ZSTDLIB_API size_t ZSTD_compress2( ZSTD_CCtx* cctx, 823 ZSTDLIB_API size_t ZSTD_compressStream2( ZSTD_CCtx* cctx, 1012 ZSTDLIB_API size_t ZSTD_compress_usingCDict(ZSTD_CCtx* cctx, 1108 ZSTDLIB_API size_t ZSTD_CCtx_loadDictionary(ZSTD_CCtx* cctx, const void* dict, size_t dictSize); 1122 ZSTDLIB_API size_t ZSTD_CCtx_refCDict(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict); [all …]
|
| /freebsd/crypto/openssl/demos/bio/ |
| H A D | server-conf.c | 31 SSL_CONF_CTX *cctx = NULL; in main() local 58 cctx = SSL_CONF_CTX_new(); in main() 59 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_SERVER); in main() 60 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CERTIFICATE); in main() 61 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_FILE); in main() 62 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx); in main() 66 rv = SSL_CONF_cmd(cctx, cnf->name, cnf->value); in main() 83 if (!SSL_CONF_CTX_finish(cctx)) { in main()
|
| H A D | client-conf.c | 21 SSL_CONF_CTX *cctx = NULL; in main() local 48 cctx = SSL_CONF_CTX_new(); in main() 49 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CLIENT); in main() 50 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_FILE); in main() 51 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx); in main() 54 rv = SSL_CONF_cmd(cctx, cnf->name, cnf->value); in main() 71 if (!SSL_CONF_CTX_finish(cctx)) { in main() 115 SSL_CONF_CTX_free(cctx); in main()
|
| H A D | client-arg.c | 20 SSL_CONF_CTX *cctx; in main() local 28 cctx = SSL_CONF_CTX_new(); in main() 29 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CLIENT); in main() 30 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx); in main() 34 rv = SSL_CONF_cmd_argv(cctx, &nargs, &args); in main() 63 if (!SSL_CONF_CTX_finish(cctx)) { in main() 106 SSL_CONF_CTX_free(cctx); in main()
|
| H A D | server-arg.c | 29 SSL_CONF_CTX *cctx; in main() local 38 cctx = SSL_CONF_CTX_new(); in main() 39 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_SERVER); in main() 40 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CERTIFICATE); in main() 41 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx); in main() 45 rv = SSL_CONF_cmd_argv(cctx, &nargs, &args); in main() 74 if (!SSL_CONF_CTX_finish(cctx)) { in main()
|
| /freebsd/crypto/openssh/ |
| H A D | mux.c | 332 struct mux_session_confirm_ctx *cctx; in mux_master_process_new_session() local 338 cctx = xcalloc(1, sizeof(*cctx)); in mux_master_process_new_session() 339 cctx->term = NULL; in mux_master_process_new_session() 340 cctx->rid = rid; in mux_master_process_new_session() 342 cctx->env = NULL; in mux_master_process_new_session() 345 (r = sshbuf_get_u32(m, &cctx->want_tty)) != 0 || in mux_master_process_new_session() 346 (r = sshbuf_get_u32(m, &cctx->want_x_fwd)) != 0 || in mux_master_process_new_session() 347 (r = sshbuf_get_u32(m, &cctx->want_agent_fwd)) != 0 || in mux_master_process_new_session() 348 (r = sshbuf_get_u32(m, &cctx->want_subsys)) != 0 || in mux_master_process_new_session() 350 (r = sshbuf_get_cstring(m, &cctx->term, NULL)) != 0 || in mux_master_process_new_session() [all …]
|
| /freebsd/crypto/openssl/doc/man7/ |
| H A D | provider-cipher.pod | 22 void OSSL_FUNC_cipher_freectx(void *cctx); 23 void *OSSL_FUNC_cipher_dupctx(void *cctx); 26 int OSSL_FUNC_cipher_encrypt_init(void *cctx, const unsigned char *key, 29 int OSSL_FUNC_cipher_decrypt_init(void *cctx, const unsigned char *key, 32 int OSSL_FUNC_cipher_encrypt_skey_init(void *cctx, void *skeydata, 35 int OSSL_FUNC_cipher_encrypt_skey_init(void *cctx, void *skeydata, 38 int OSSL_FUNC_cipher_update(void *cctx, unsigned char *out, size_t *outl, 40 int OSSL_FUNC_cipher_final(void *cctx, unsigned char *out, size_t *outl, 42 int OSSL_FUNC_cipher_cipher(void *cctx, unsigned char *out, size_t *outl, 46 int OSSL_FUNC_cipher_pipeline_encrypt_init(void *cctx, const unsigned char *key, [all …]
|
| /freebsd/sys/contrib/zstd/lib/deprecated/ |
| H A D | zbuff.h | 73 ZBUFF_DEPRECATED("use ZSTD_freeCStream") size_t ZBUFF_freeCCtx(ZBUFF_CCtx* cctx); 75 ZBUFF_DEPRECATED("use ZSTD_initCStream") size_t ZBUFF_compressInit(ZBUFF_CCtx* cctx, int … 76 …D_initCStream_usingDict") size_t ZBUFF_compressInitDictionary(ZBUFF_CCtx* cctx, const void* dict, … 78 ZBUFF_DEPRECATED("use ZSTD_compressStream") size_t ZBUFF_compressContinue(ZBUFF_CCtx* cctx, void* d… 79 ZBUFF_DEPRECATED("use ZSTD_flushStream") size_t ZBUFF_compressFlush(ZBUFF_CCtx* cctx, void* dst,… 80 ZBUFF_DEPRECATED("use ZSTD_endStream") size_t ZBUFF_compressEnd(ZBUFF_CCtx* cctx, void* dst, s…
|