summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/helper
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-04-07 10:56:44 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-04-07 10:56:44 +0000
commit163eaea564a148b0bfc593daf427264ac58836bd (patch)
tree8e484e1b3d81eb8d97a6b1e9c5b1d16781b9ec02 /xmlsecurity/source/helper
parentbba0a4d540324cab533951f2042a74e8cba5eea8 (diff)
INTEGRATION: CWS jl32 (1.23.48); FILE MERGED
2006/03/20 10:59:58 jl 1.23.48.1: #i62684# certain Certificates do not work (utf8 encoded, using special characters)
Diffstat (limited to 'xmlsecurity/source/helper')
-rw-r--r--xmlsecurity/source/helper/xmlsignaturehelper.cxx16
1 files changed, 10 insertions, 6 deletions
diff --git a/xmlsecurity/source/helper/xmlsignaturehelper.cxx b/xmlsecurity/source/helper/xmlsignaturehelper.cxx
index b7ca2bc070a0..075cef869dcd 100644
--- a/xmlsecurity/source/helper/xmlsignaturehelper.cxx
+++ b/xmlsecurity/source/helper/xmlsignaturehelper.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: xmlsignaturehelper.cxx,v $
*
- * $Revision: 1.23 $
+ * $Revision: 1.24 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 17:22:16 $
+ * last change: $Author: vg $ $Date: 2006-04-07 11:56:44 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -144,25 +144,29 @@ sal_Int32 XMLSignatureHelper::GetNewSecurityId()
void XMLSignatureHelper::SetX509Certificate(
sal_Int32 nSecurityId,
const rtl::OUString& ouX509IssuerName,
- const rtl::OUString& ouX509SerialNumber)
+ const rtl::OUString& ouX509SerialNumber,
+ const rtl::OUString& ouX509Cert)
{
mpXSecController->setX509Certificate(
nSecurityId,
ouX509IssuerName,
- ouX509SerialNumber);
+ ouX509SerialNumber,
+ ouX509Cert);
}
void XMLSignatureHelper::SetX509Certificate(
sal_Int32 nSecurityId,
sal_Int32 nSecurityEnvironmentIndex,
const rtl::OUString& ouX509IssuerName,
- const rtl::OUString& ouX509SerialNumber)
+ const rtl::OUString& ouX509SerialNumber,
+ const rtl::OUString& ouX509Cert)
{
mpXSecController->setX509Certificate(
nSecurityId,
nSecurityEnvironmentIndex,
ouX509IssuerName,
- ouX509SerialNumber);
+ ouX509SerialNumber,
+ ouX509Cert);
}
void XMLSignatureHelper::SetDateTime( sal_Int32 nSecurityId, const Date& rDate, const Time& rTime )