[openssl-dev] Hello, OpenSSL!

2015-04-13 Thread Andrejs Igumenovs
Dear DevTeam, I am willing to contribute to The OpenSSL Project. How and where do I start? Here is my LinkedIn page: https://ee.linkedin.com/pub/andrejs-igumenovs/53/642/8b6 https://ee.linkedin.com/pub/andrejs-igumenovs/53/642/8b6 Thank you, Andrejs.

[openssl-dev] [openssl.org #3802] [PATCH] Fixes some typos in doc/

2015-04-13 Thread Alok Menghrajani via RT
Hi, I hope you'll see value in my patches which fix typos in the docs. Alok 0001-Fixes-some-typos-in-doc-apps.patch Description: Binary data 0002-Fixes-some-typos-in-doc-ssl.patch Description: Binary data ___ openssl-dev mailing list To

Re: [openssl-dev] [openssl.org #3802] [PATCH] Fixes some typos in doc/

2015-04-13 Thread Alok Menghrajani via RT
Two more. For 0004-Corrects-port-names-in-documentation-for-BIO_set_con.patch, it is probably worth checking that my deletion is correct. On Mon, Apr 13, 2015 at 12:39 PM, Alok Menghrajani via RT r...@openssl.org wrote: Hi, I hope you'll see value in my patches which fix typos in the docs.

Re: [openssl-dev] Hello, OpenSSL!

2015-04-13 Thread Matt Caswell
On 13/04/15 19:20, Andrejs Igumenovs wrote: Dear DevTeam, I am willing to contribute to The OpenSSL Project. How and where do I start? Here is a good place: https://wiki.openssl.org/index.php/Main_Page#Feedback_and_Contributions Matt ___

Re: [openssl-dev] CMS: is there a support for authenticated encryption (aes-gcm, aes-cbc-cmac etc.) in CMS?

2015-04-13 Thread Dr. Stephen Henson
On Mon, Apr 13, 2015, Pawe?? Ka??mierczak wrote: Hello, is there a support for aes-gcm in openSSL CMS implementaion? Following code works when EVP_aes_128_cbc is used as CMS_encrypt param but fails with EVP_aes_128_gcm. Am I missing something (like setting the gcm header/tag) or

[openssl-dev] [openssl.org #3801] need NULL check in CMAC_CTX_free

2015-04-13 Thread Salz, Rich via RT
need to add these lines around 115 in cma.c void CMAC_CTX_free(CMAC_CTX *ctx) { +if (!ctx) +return; CMAC_CTX_cleanup(ctx); OPENSSL_free(ctx); } . ___ openssl-dev mailing list To unsubscribe:

[openssl-dev] [openssl.org #3800] malformed asn1 definition causes segfault in openssl asn1parse

2015-04-13 Thread Hanno Boeck via RT
Attached file will crash the asn1 definitions parser. To test: openssl asn1parse -genconf segfault.asn I tried to create a stack trace with gdb to see what's going on and it is several megabytes in size and contains lines like: #24353 0x778665be in asn1_multi (cnf=0x7fffd410,

Re: [openssl-dev] [openssl.org #3796] doc for verify does misspell -CRLfile option

2015-04-13 Thread Hanno Böck
Hi, On Mon, 13 Apr 2015 00:05:22 + Salz, Rich rs...@akamai.com wrote: I'm thinking of make the flags to the openssl apps be case-insensitive. Thoughts? Not sure this is such a good idea. I'm usually a friend of keeping stuff more strict to avoid confusions. Also changing this now could

Re: [openssl-dev] [openssl.org #3796] doc for verify does misspell -CRLfile option

2015-04-13 Thread Salz, Rich
Independent of the case sensitivity (which likely won't be backported anyway), patch should be noncontroversial to apply right away, right? For some definition of 'right away' :) yes. ___ openssl-dev mailing list To unsubscribe:

[openssl-dev] CMS: is there a support for authenticated encryption (aes-gcm, aes-cbc-cmac etc.) in CMS?

2015-04-13 Thread Paweł Kaźmierczak
Hello, is there a support for aes-gcm in openSSL CMS implementaion? Following code works when EVP_aes_128_cbc is used as CMS_encrypt param but fails with EVP_aes_128_gcm. Am I missing something (like setting the gcm header/tag) or authenticated encryption is not supported in CMS? void cmsTest()