Re: Fw: How to add Key usage attribute...

2001-02-05 Thread Dr S N Henson
chandu wrote: > > Hi all, > > I have a question regarding the adding of the Key usage attribute to the > PKCS10 certificate request. I tried using the following code.. > > ikeyUsageAttr = X509v3_KU_DIGITAL_SIGNATURE; > > iRetVal = X509_REQ_add1_attr_by_NID(preq, NID_key_usage,V_ASN1_INTEG

Fw: How to add Key usage attribute...

2001-02-04 Thread chandu
Hi all, I have a question regarding the adding of the Key usage attribute to the PKCS10 certificate request. I tried using the following code.. ikeyUsageAttr = X509v3_KU_DIGITAL_SIGNATURE; iRetVal = X509_REQ_add1_attr_by_NID(preq, NID_key_usage,V_ASN1_INTEGER, &(ikeyUsageAttr), 4); When