diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-01 15:10:56 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-02 06:38:43 +0000 |
commit | 35e68754ec3cff30c5cdb665688a9b13f29dd439 (patch) | |
tree | 90cca99363ad1c0209c6d21fe5a82de2db9d039f /xmlsecurity | |
parent | 837f171810a95a1d87907dd08d67e969276f0559 (diff) |
loplugin:unusedmethods
Change-Id: I3d6f1300f4fae2af9e580d1d3b2c2c80fa9e9268
Reviewed-on: https://gerrit.libreoffice.org/19075
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/Library_xsec_xmlsec.mk | 1 | ||||
-rw-r--r-- | xmlsecurity/inc/xmlsecurity/certvalidity.hxx | 30 | ||||
-rw-r--r-- | xmlsecurity/source/xmlsec/certvalidity.cxx | 86 |
3 files changed, 0 insertions, 117 deletions
diff --git a/xmlsecurity/Library_xsec_xmlsec.mk b/xmlsecurity/Library_xsec_xmlsec.mk index 5fc4fc13c64d..65b3cfc6582c 100644 --- a/xmlsecurity/Library_xsec_xmlsec.mk +++ b/xmlsecurity/Library_xsec_xmlsec.mk @@ -57,7 +57,6 @@ $(eval $(call gb_Library_use_externals,xsec_xmlsec,\ $(eval $(call gb_Library_add_exception_objects,xsec_xmlsec,\ xmlsecurity/source/xmlsec/biginteger \ xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl \ - xmlsecurity/source/xmlsec/certvalidity \ xmlsecurity/source/xmlsec/errorcallback \ xmlsecurity/source/xmlsec/saxhelper \ xmlsecurity/source/xmlsec/serialnumberadapter \ diff --git a/xmlsecurity/inc/xmlsecurity/certvalidity.hxx b/xmlsecurity/inc/xmlsecurity/certvalidity.hxx deleted file mode 100644 index 091165c5c243..000000000000 --- a/xmlsecurity/inc/xmlsecurity/certvalidity.hxx +++ /dev/null @@ -1,30 +0,0 @@ -/* -*- 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_INC_XMLSECURITY_CERTVALIDITY_HXX -#define INCLUDED_XMLSECURITY_INC_XMLSECURITY_CERTVALIDITY_HXX - -#include <sal/config.h> -#include <rtl/ustring.hxx> - -OUString certificateValidityToOUString( ::sal_Int32 certValidity ) ; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/xmlsecurity/source/xmlsec/certvalidity.cxx b/xmlsecurity/source/xmlsec/certvalidity.cxx deleted file mode 100644 index 0bfc432fa973..000000000000 --- a/xmlsecurity/source/xmlsec/certvalidity.cxx +++ /dev/null @@ -1,86 +0,0 @@ -/* -*- 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 . - */ - - -#include <xmlsecurity/certvalidity.hxx> -#include <com/sun/star/security/CertificateValidity.hpp> - -using namespace ::com::sun::star::security ; - -#define VALID_STR "valid certificate" -#define INVALID_STR "invalid certificate" -#define UNTRUSTED_STR "untrusted certificate" -#define TIME_INVALID_STR "expired certificate" -#define NOT_NESTED_TIME_STR "invalid time nesting" -#define REVOKED_STR "revoked certificate" -#define UNKNOWN_REVOKATION_STR "unknown certificate revocation status" -#define SIGNATURE_INVALID_STR "invalid certificate signature" -#define EXTENSION_INVALID_STR "invalid certificate extension" -#define EXTENSION_UNKNOWN_STR "unknown critical certificate extension" -#define ISSUER_UNKNOWN_STR "unknown certificate issuer" -#define ISSUER_UNTRUSTED_STR "untrusted certificate issuer" -#define ISSUER_INVALID_STR "invalid certificate issuer" -#define ROOT_UNKNOWN_STR "unknown root certificate" -#define ROOT_UNTRUSTED_STR "untrusted root certificate" -#define ROOT_INVALID_STR "invalid root certificate" -#define CHAIN_INCOMPLETE_STR "invalid certification path" - -OUString certificateValidityToOUString( ::sal_Int32 certValidity ) { - OUString aValidity ; - - if( certValidity == CertificateValidity::VALID ) { - aValidity = VALID_STR; - } else if( ( certValidity & CertificateValidity::UNTRUSTED ) == CertificateValidity::UNTRUSTED ) { - aValidity = UNTRUSTED_STR; - } else if( ( certValidity & CertificateValidity::TIME_INVALID ) == CertificateValidity::TIME_INVALID ) { - aValidity = TIME_INVALID_STR; - } else if( ( certValidity & CertificateValidity::NOT_TIME_NESTED ) == CertificateValidity::NOT_TIME_NESTED ) { - aValidity = NOT_NESTED_TIME_STR; - } else if( ( certValidity & CertificateValidity::REVOKED ) == CertificateValidity::REVOKED ) { - aValidity = REVOKED_STR; - } else if( ( certValidity & CertificateValidity::UNKNOWN_REVOKATION ) == CertificateValidity::UNKNOWN_REVOKATION ) { - aValidity = UNKNOWN_REVOKATION_STR; - } else if( ( certValidity & CertificateValidity::SIGNATURE_INVALID ) == CertificateValidity::SIGNATURE_INVALID ) { - aValidity = SIGNATURE_INVALID_STR; - } else if( ( certValidity & CertificateValidity::EXTENSION_INVALID ) == CertificateValidity::EXTENSION_INVALID ) { - aValidity = EXTENSION_INVALID_STR; - } else if( ( certValidity & CertificateValidity::EXTENSION_UNKNOWN ) == CertificateValidity::EXTENSION_UNKNOWN ) { - aValidity = EXTENSION_UNKNOWN_STR; - } else if( ( certValidity & CertificateValidity::ISSUER_UNKNOWN ) == CertificateValidity::ISSUER_UNKNOWN ) { - aValidity = ISSUER_UNKNOWN_STR; - } else if( ( certValidity & CertificateValidity::ISSUER_UNTRUSTED ) == CertificateValidity::ISSUER_UNTRUSTED ) { - aValidity = ISSUER_UNTRUSTED_STR; - } else if( ( certValidity & CertificateValidity::ISSUER_INVALID ) == CertificateValidity::ISSUER_INVALID ) { - aValidity = ISSUER_INVALID_STR; - } else if( ( certValidity & CertificateValidity::ROOT_UNKNOWN ) == CertificateValidity::ROOT_UNKNOWN ) { - aValidity = ROOT_UNKNOWN_STR; - } else if( ( certValidity & CertificateValidity::ROOT_UNTRUSTED ) == CertificateValidity::ROOT_UNTRUSTED ) { - aValidity = ROOT_UNTRUSTED_STR; - } else if( ( certValidity & CertificateValidity::ROOT_INVALID ) == CertificateValidity::ROOT_INVALID ) { - aValidity = ROOT_INVALID_STR; - } else if( ( certValidity & CertificateValidity::CHAIN_INCOMPLETE ) == CertificateValidity::CHAIN_INCOMPLETE ) { - aValidity = CHAIN_INCOMPLETE_STR; - } else { - aValidity = INVALID_STR; - } - - return aValidity ; -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |