Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
bfed8b9c
Kaydet (Commit)
bfed8b9c
authored
Nis 14, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Clean up function declarations
Change-Id: I448e0cf2abeeafb0f6266baeb95705b3a11705a4
üst
5e3c9931
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
45 additions
and
18 deletions
+45
-18
secerror.cxx
xmlsecurity/source/xmlsec/nss/secerror.cxx
+1
-0
secerror.hxx
xmlsecurity/source/xmlsec/nss/secerror.hxx
+5
-0
securityenvironment_nssimpl.cxx
...ecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx
+0
-12
xsec_nss.cxx
xmlsecurity/source/xmlsec/nss/xsec_nss.cxx
+1
-0
xsec_xmlsec.cxx
xmlsecurity/source/xmlsec/xsec_xmlsec.cxx
+1
-6
xsec_xmlsec.hxx
xmlsecurity/source/xmlsec/xsec_xmlsec.hxx
+37
-0
No files found.
xmlsecurity/source/xmlsec/nss/secerror.cxx
Dosyayı görüntüle @
bfed8b9c
...
...
@@ -19,6 +19,7 @@
#include "secerr.h"
#include "secerror.hxx"
#include "sslerr.h"
#include "nspr.h"
#include "nss.h"
...
...
xmlsecurity/source/xmlsec/nss/secerror.hxx
Dosyayı görüntüle @
bfed8b9c
...
...
@@ -20,6 +20,11 @@
#ifndef _XSECERROR_HXX_
#define _XSECERROR_HXX_
#include <sal/config.h>
#include <certt.h>
#include <nspr.h>
const
char
*
getCertError
(
PRErrorCode
errNum
);
...
...
xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx
Dosyayı görüntüle @
bfed8b9c
...
...
@@ -75,18 +75,6 @@ struct UsageDescription
:
usage
(
i_usage
)
,
description
(
i_description
)
{}
UsageDescription
(
const
UsageDescription
&
aDescription
)
:
usage
(
aDescription
.
usage
)
,
description
(
aDescription
.
description
)
{}
UsageDescription
&
operator
=
(
const
UsageDescription
&
aDescription
)
{
usage
=
aDescription
.
usage
;
description
=
aDescription
.
description
;
return
*
this
;
}
};
...
...
xmlsecurity/source/xmlsec/nss/xsec_nss.cxx
Dosyayı görüntüle @
bfed8b9c
...
...
@@ -30,6 +30,7 @@
#include "xmlsignature_nssimpl.hxx"
#include "xmlencryption_nssimpl.hxx"
#include "xmlsecuritycontext_nssimpl.hxx"
#include "xsec_xmlsec.hxx"
#include "securityenvironment_nssimpl.hxx"
using
namespace
::
rtl
;
...
...
xmlsecurity/source/xmlsec/xsec_xmlsec.cxx
Dosyayı görüntüle @
bfed8b9c
...
...
@@ -25,6 +25,7 @@
#include "serialnumberadapter.hxx"
#include "xmlelementwrapper_xmlsecimpl.hxx"
#include "xmldocumentwrapper_xmlsecimpl.hxx"
#include "xsec_xmlsec.hxx"
using
namespace
::
cppu
;
using
namespace
::
com
::
sun
::
star
::
uno
;
...
...
@@ -33,12 +34,6 @@ using namespace ::com::sun::star::lang;
extern
"C"
{
extern
void
*
nss_component_getFactory
(
const
sal_Char
*
,
void
*
,
void
*
);
#if defined( XMLSEC_CRYPTO_MSCRYPTO )
extern
void
*
mscrypt_component_getFactory
(
const
sal_Char
*
,
void
*
,
void
*
);
#endif
SAL_DLLPUBLIC_EXPORT
void
*
SAL_CALL
xsec_xmlsec_component_getFactory
(
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
pRegistryKey
)
{
void
*
pRet
=
0
;
...
...
xmlsecurity/source/xmlsec/xsec_xmlsec.hxx
0 → 100644
Dosyayı görüntüle @
bfed8b9c
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_XMLSECURITY_SOURCE_XMLSEC_XSEC_XMLSEC_HXX
#define INCLUDED_XMLSECURITY_SOURCE_XMLSEC_XSEC_XMLSEC_HXX
#include <sal/config.h>
extern
"C"
{
void
*
nss_component_getFactory
(
const
sal_Char
*
,
void
*
,
void
*
);
#if defined( XMLSEC_CRYPTO_MSCRYPTO )
void
*
mscrypt_component_getFactory
(
const
sal_Char
*
,
void
*
,
void
*
);
#endif
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment