MCPcopy Create free account
hub / github.com/apache/httpd / md_data_pinit

Function md_data_pinit

modules/md/md_util.c:79–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77/* data chunks */
78
79void md_data_pinit(md_data_t *d, apr_size_t len, apr_pool_t *p)
80{
81 md_data_null(d);
82 d->data = apr_pcalloc(p, len);
83 d->len = len;
84}
85
86md_data_t *md_data_pmake(apr_size_t len, apr_pool_t *p)
87{

Callers 4

bn64Function · 0.85
md_crypt_sign64Function · 0.85
init_store_fileFunction · 0.85
md_data_pmakeFunction · 0.85

Calls 1

md_data_nullFunction · 0.85

Tested by

no test coverage detected