add asn1 set to asn1 sequence

2007-08-06 Thread Christian Wiesbauer
I'm trying to add an ASN1 set to an ASN1 sequence with following code: unsigned char *p, *p_; ASN1_STRING *seq, *set; ASN1_OBJECT *oid_1, *oid_2; unsigned char *data, *data_; int i, j, k, total; // SET oid_1 = OBJ_nid2obj(NID_pkcs7_data);

Vishal V is away from the office.

2007-08-06 Thread Vishal V
I will be out of the office starting 08/07/2007 and will not return until 08/27/2007. I will respond to your message when I return from project work. For DP PO Related queries please mail to DPPO CoOwner -> Mayank Singhal and Quality Group -> Leena Pradhan/ Swati Sharma =-=-

Re: Books about OpenSSL

2007-08-06 Thread Ian jonhson
Hi, "Network security with OpenSSL": http://www.oreilly.com/catalog/openssl/index.html is recommended by some friends in mail-list On 8/7/07, acrisio domiciano dias <[EMAIL PROTECTED]> wrote: > Hi everybody, > > I'm looking for some good books about the OpenSSL libraryCould anyone > recomm

Books about OpenSSL

2007-08-06 Thread acrisio domiciano dias
Hi everybody, I'm looking for some good books about the OpenSSL libraryCould anyone recommend one? Regards, Acrisio Dias

DTLS non-compliant list (based on snapshot 20070801)

2007-08-06 Thread Alex Lam
Hi all, There had been a number of email threads on both the user and dev mailing lists regarding DTLS non-RFC-compliance. So, I think it is better to group them together to raise awareness and ensure interoperability with other DTLS stacks. I have verified these on snapshot-2007 08 01 1) Incorre

Using STACK_OF macro for custom data types

2007-08-06 Thread Smith, Ryan-P56787
Are there any gotchas with using the STACK_OF macro provided by OpenSSL with custom data types. Of course this means #define-ing all of the sk__* macros in my .h file. This is a convenience for the program I am writing, as I am already linking in the OpenSSL library. Is there any reason that thi

RE: possibly a problem with location of certificates problem

2007-08-06 Thread David Schwartz
> Problem is openSSL only seems to work if I explicitly pass it the > location of the certificates with the -Capath switch. > It doesn't seem able to find them on it's own. > This creates a problem for OpenLDAP when I am trying to query an LDAP > server via ssl/tls. > example: /usr/bin/ldapsearc

RE: Verisign Certificate

2007-08-06 Thread C K KIRAN-KNTX36
Hi, You should have received the certificate in PEM or DER format. No need to save the file .txt format. Do openssl -inform "whichever form PEM or DER" -in -noout -text This will dump the text form of the certificate. Regards, Kiran From: [EMAIL PROTE

Verisign Certificate

2007-08-06 Thread Kaushal Shriyan
Hi, I have received certificate from Verisign in the email. I have copied it to a notepad and saved it as abc.txt I am running the command openssl x509 -in abc.txt -out ssl.pem is this the right command Thanks and Regards Kaushal

RE: possibly a problem with location of certificates problem

2007-08-06 Thread Silvester Leigh
>> command: openssl s_client -connect server.name.ac.uk:636 -verify 5 >> result: Verify return code: 19 (self signed certificate in certificate chain) >> >> command: openssl s_client -connectserver.name.ac.uk:636 -verify 5 >> -CApath /etc/pki/tls/certs >> result: Verify return code: 0 (ok) >> >>