[xmlsec] need help get cert in memory

2006-09-06 Thread Jürgen Heiss



node = 
xmlSecFindNode(xmlDocGetRootElement(doc), "X509Certificate", 
xmlSecDSigNs);strcpy(certbase64, 
node-children-content);

// so if I save 
certbase64 to a file like xxx.cer it will be a valid 
certifcate.
Me question is now 
how can I get acces into the xmlsec on this certficate.

like

x509 = 
xmlSecMSCryptoKeyDataX509GetCert(tmp,pos);

Is there a way to 
load the cert from file
___
xmlsec mailing list
xmlsec@aleksey.com
http://www.aleksey.com/mailman/listinfo/xmlsec


Re: [xmlsec] need help get cert in memory

2006-09-06 Thread Aleksey Sanin

You can parse KeyInfo node and then itterate through the list
of KeyData objects. Look inside xmlsec code for examples.

Aleksey

Jürgen Heiss wrote:
  node = xmlSecFindNode(xmlDocGetRootElement(doc), X509Certificate, 
xmlSecDSigNs);

  strcpy(certbase64, node-children-content);
 
// so if I save certbase64 to a file like xxx.cer it will be a valid 
certifcate.

Me question is now how can I get acces into the xmlsec on this certficate.
 
like
 
  x509 = xmlSecMSCryptoKeyDataX509GetCert(tmp,pos);
 
Is there a way to load the cert from file





___
xmlsec mailing list
xmlsec@aleksey.com
http://www.aleksey.com/mailman/listinfo/xmlsec

___
xmlsec mailing list
xmlsec@aleksey.com
http://www.aleksey.com/mailman/listinfo/xmlsec