diff options
author | gt <gt@openoffice.org> | 2004-07-23 08:38:48 +0000 |
---|---|---|
committer | gt <gt@openoffice.org> | 2004-07-23 08:38:48 +0000 |
commit | 345587a39c71f984599a5b8baeedb96cdf02b71f (patch) | |
tree | e9332fd06d06f17eb6a64443a61bd6523a3052ae /xmlsecurity | |
parent | 4f4e9ada797f248a8e84ffffef743fe316073358 (diff) |
#i20883# fill addAuthorToTrustedSources() and addLocationToTrustedSources() with life
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/source/component/documentdigitalsignatures.cxx | 27 |
1 files changed, 23 insertions, 4 deletions
diff --git a/xmlsecurity/source/component/documentdigitalsignatures.cxx b/xmlsecurity/source/component/documentdigitalsignatures.cxx index cbdf474f0f31..45dbc276fafe 100644 --- a/xmlsecurity/source/component/documentdigitalsignatures.cxx +++ b/xmlsecurity/source/component/documentdigitalsignatures.cxx @@ -2,9 +2,9 @@ * * $RCSfile: documentdigitalsignatures.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: gt $ $Date: 2004-07-19 15:46:56 $ + * last change: $Author: gt $ $Date: 2004-07-23 09:38:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -63,6 +63,7 @@ #include <documentdigitalsignatures.hxx> #include <xmlsecurity/digitalsignaturesdialog.hxx> #include <xmlsecurity/macrosecurity.hxx> +#include <xmlsecurity/baseencoding.hxx> #ifndef _COM_SUN_STAR_EMBED_XSTORAGE_HPP_ #include <com/sun/star/embed/XStorage.hpp> @@ -231,13 +232,31 @@ void DocumentDigitalSignatures::manageTrustedSources( ) throw (::com::sun::star void DocumentDigitalSignatures::addAuthorToTrustedSources( const ::com::sun::star::uno::Reference< ::com::sun::star::security::XCertificate >& Author ) throw (::com::sun::star::uno::RuntimeException) { + SvtSecurityOptions aSecOpts; + + SvtSecurityOptions::Certificate aNewCert; + aNewCert[ 0 ] = GetContentPart( Author->getIssuerName(), String::CreateFromAscii( "CN" ) ); + aNewCert[ 1 ] = GetHexString( Author->getIssuerUniqueID(), " " ); + aNewCert[ 2 ] = baseEncode( Author->getEncoded(), BASE64 ); + + uno::Sequence< SvtSecurityOptions::Certificate > aTrustedAuthors = aSecOpts.GetTrustedAuthors(); + sal_Int32 nCnt = aTrustedAuthors.getLength(); + aTrustedAuthors.realloc( nCnt + 1 ); + aTrustedAuthors[ nCnt ] = aNewCert; + + aSecOpts.SetTrustedAuthors( aTrustedAuthors ); } void DocumentDigitalSignatures::addLocationToTrustedSources( const ::rtl::OUString& Location ) throw (::com::sun::star::uno::RuntimeException) { - SvtSecurityOptions aSecOpt; + SvtSecurityOptions aSecOpt; + + ::com::sun::star::uno::Sequence< ::rtl::OUString > aSecURLs = aSecOpt.GetSecureURLs(); + sal_Int32 nCnt = aSecOpt.getLength(); + aSecOpt.realloc( nCnt + 1 ); + aSecOpt[ nCnt ] = Location; -// aSecOpt.AddSecureURL( Location ); + aSecOpt.SetSecureURLs( ) } |