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);
> >
>
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
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);