:: com :: sun :: star :: xml :: crypto ::

interface XCertificateCreator

Methods' Summary
addDERCertificateToTheDatabase * Adds a certificate to the certificate database with the trust provided by the trust string.  
createDERCertificateWithPrivateKey * Create certificate from raw DER encoded certificate and associate the private key with the certificate  
Methods' Details
addDERCertificateToTheDatabase
::com::sun::star::security::XCertificate
addDERCertificateToTheDatabase( [in] sequence< byte >  aDerCertificate,
[in] string  aTrustString );

Description
* Adds a certificate to the certificate database with the trust provided by the trust string.
createDERCertificateWithPrivateKey
::com::sun::star::security::XCertificate
createDERCertificateWithPrivateKey( [in] sequence< byte >  aDerCertificate,
[in] sequence< byte >  aPrivateKey )
raises( ::com::sun::star::uno::SecurityException );

Description
* Create certificate from raw DER encoded certificate and associate the private key with the certificate
Top of Page