[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] use libcrypto routines in gnulib
From: |
Paul Eggert |
Subject: |
Re: [PATCH] use libcrypto routines in gnulib |
Date: |
Mon, 02 Dec 2013 17:48:18 -0800 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.1.1 |
Thanks, that works for me; please install it into gnulib
when you have the time.
I do have some minor stylistic suggestions, but they're not crucial:
+GL_OPENSSL_INLINE void
+GL_CRYPTO_FN(_init_ctx) (struct _gl_ctx *ctx)
+ { (void) OPENSSL_FN(_Init) ((_gl_CTX *) ctx); }
Space before paren, here and elsewhere.
+GL_OPENSSL_INLINE void*
"void *", not "void*", here and elsewhere.
+ { return OPENSSL_FN() ((const unsigned char *)buf, len, res); }
Space between ")" and "buf".
- [PATCH] use libcrypto routines in gnulib, Pádraig Brady, 2013/12/02
- Re: [PATCH] use libcrypto routines in gnulib, Paul Eggert, 2013/12/02
- Re: [PATCH] use libcrypto routines in gnulib, Pádraig Brady, 2013/12/02
- Re: [PATCH] use libcrypto routines in gnulib, Pádraig Brady, 2013/12/08
- Re: [PATCH] use libcrypto routines in gnulib, Paul Eggert, 2013/12/08
- Re: [PATCH] use libcrypto routines in gnulib, Pádraig Brady, 2013/12/08
- Re: [PATCH] use libcrypto routines in gnulib, Paul Eggert, 2013/12/08
- Re: [PATCH] use libcrypto routines in gnulib, Pádraig Brady, 2013/12/08
- Re: [PATCH] use libcrypto routines in gnulib, Pádraig Brady, 2013/12/09
Re: [PATCH] use libcrypto routines in gnulib, Pádraig Brady, 2013/12/02