Re: [users@httpd] how to get apr_pool_t when need to call ap_md5

2017-09-18 Thread eeadev dev
thank u, Eric. I just saw your reply. 2017-09-07 16:54 GMT-07:00 Eric Covener : > On Thu, Sep 7, 2017 at 12:07 PM, eeadev dev wrote: > > In my function I need to get the checksum using md5. > > > > I saw that there is this function ap_md5(apr_pool_t *a, const unsigned > char > > *string); > > >

Re: [users@httpd] how to get apr_pool_t when need to call ap_md5

2017-09-07 Thread Eric Covener
On Thu, Sep 7, 2017 at 12:07 PM, eeadev dev wrote: > In my function I need to get the checksum using md5. > > I saw that there is this function ap_md5(apr_pool_t *a, const unsigned char > *string); > > but it needs apr_pool_t > > how can I get it? > > char key[] = "abc"; > > key_md5 = ap_md5(mem_p

[users@httpd] how to get apr_pool_t when need to call ap_md5

2017-09-07 Thread eeadev dev
In my function I need to get the checksum using md5. I saw that there is this function ap_md5(apr_pool_t *a, const unsigned char *string); but it needs apr_pool_t how can I get it? char key[] = "abc"; key_md5 = ap_md5(mem_pool, key);