Re: Is certificate a CA or Client Certificate

2011-10-03 Thread Jakob Bohm
, 2011 10:19 AM To: openssl-users@openssl.org Subject: Re: Is certificate a CA or Client Certificate Are you sure there is an ExtendedKeyUsage indicating a Certificate Sign OID? Cert Sign AFAIK is only indicated in KeyUsage extension. -Sandeep On Sat, Oct 1, 2011 at 9:24 AM,jb-open

Re: Is certificate a CA or Client Certificate

2011-10-01 Thread sandeep kiran p
Are you sure there is an ExtendedKeyUsage indicating a Certificate Sign OID? Cert Sign AFAIK is only indicated in KeyUsage extension. -Sandeep On Sat, Oct 1, 2011 at 9:24 AM, jb-open...@wisemo.com wrote: On 01-10-2011 01:09, Dave Thompson wrote: From: owner-openssl-users@openssl.**org

RE: Is certificate a CA or Client Certificate

2011-09-30 Thread Dave Thompson
From: owner-openssl-us...@openssl.org On Behalf Of jb-open...@wisemo.com Sent: Thursday, 29 September, 2011 18:46 Because the attributes mentioned are only meaningful if covered by the digital signature on the certificate, it cannot change in any format conversion that keeps the certificate

Re: Is certificate a CA or Client Certificate

2011-09-29 Thread Harshvir Sidhu
a Client Certificate or a CA/Root Certificate? - H S Try the following command, at look for the CA property and also see if the certificate lists itself or someone else as issuer: openssl x509 -in somecert.cer -noout -text somecert.txt (somecert.txt

Re: Is certificate a CA or Client Certificate

2011-09-29 Thread Harshvir Sidhu
...@wisemo.com mailto:jb-open...@wisemo.com** wrote: On 9/16/2011 7:58 PM, Harshvir Sidhu wrote: Hi, In openssl is there some method using which i can find whether the cerficiate in a file a Client Certificate

Re: Is certificate a CA or Client Certificate

2011-09-29 Thread jb-openssl
...@wisemo.com wrote: On 9/16/2011 7:58 PM, Harshvir Sidhu wrote: Hi, In openssl is there some method using which i can find whether the cerficiate in a file a Client Certificate

Is certificate a CA or Client Certificate

2011-09-16 Thread Harshvir Sidhu
Hi, In openssl is there some method using which i can find whether the cerficiate in a file a Client Certificate or a CA/Root Certificate? - H S

Re: Is certificate a CA or Client Certificate

2011-09-16 Thread Jakob Bohm
On 9/16/2011 7:58 PM, Harshvir Sidhu wrote: Hi, In openssl is there some method using which i can find whether the cerficiate in a file a Client Certificate or a CA/Root Certificate? - H S Try the following command, at look for the CA property and also see if the certificate lists itself

Re: Is certificate a CA or Client Certificate

2011-09-16 Thread Harshvir Sidhu
method using which i can find whether the cerficiate in a file a Client Certificate or a CA/Root Certificate? - H S Try the following command, at look for the CA property and also see if the certificate lists itself or someone else as issuer: openssl x509 -in somecert.cer -noout -text somecert.txt

Re: Is certificate a CA or Client Certificate

2011-09-16 Thread vivek here
Hi Harshiv, Try commad : openssl X509 -in 'yourcert/rootcert' -text You are able to see human readable certificate. If the certificate is client certificate and not self signed then 'issuer' is different from 'subject'. And CA: flase for client certificate. you can find CA:true for root/CA

Re: Is certificate a CA or Client Certificate

2011-09-16 Thread Jakob Bohm
: On 9/16/2011 7:58 PM, Harshvir Sidhu wrote: Hi, In openssl is there some method using which i can find whether the cerficiate in a file a Client Certificate or a CA/Root Certificate? - H S Try the following command, at look for the CA property and also