summaryrefslogtreecommitdiffstats
path: root/src/network/ssl/qsslcertificate_winrt.cpp
diff options
context:
space:
mode:
authorOliver Wolff <oliver.wolff@digia.com>2014-08-22 11:36:25 +0200
committerJeremy Lainé <jeremy.laine@m4x.org>2014-08-26 18:48:36 +0200
commit0475822d0181382e13cd98747d5a793d73be7166 (patch)
tree50158fb7f9daa8e6cdb627d568fd380da94e7f1f /src/network/ssl/qsslcertificate_winrt.cpp
parent852dbe76584d244523c55f60c49c96ba0b5a0741 (diff)
Added qsslcertificate_qt.cpp
Having QAsn1Element in place, we can have a common foundation for the ssl certificate class for upcoming ports like WinRT and SecureTransport. The only thing that has to be added to the existing class is the handle() functionality. Change-Id: I560a8e412b26f350855c7bc456fcdb8e9b750939 Reviewed-by: Richard J. Moore <rich@kde.org>
Diffstat (limited to 'src/network/ssl/qsslcertificate_winrt.cpp')
-rw-r--r--src/network/ssl/qsslcertificate_winrt.cpp191
1 files changed, 0 insertions, 191 deletions
diff --git a/src/network/ssl/qsslcertificate_winrt.cpp b/src/network/ssl/qsslcertificate_winrt.cpp
deleted file mode 100644
index 9c857a6787..0000000000
--- a/src/network/ssl/qsslcertificate_winrt.cpp
+++ /dev/null
@@ -1,191 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the QtNetwork module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-
-
-#include "qsslcertificate.h"
-#include "qsslcertificate_p.h"
-
-QT_BEGIN_NAMESPACE
-
-bool QSslCertificate::operator==(const QSslCertificate &other) const
-{
- if (d == other.d)
- return true;
- return false;
-}
-
-bool QSslCertificate::isNull() const
-{
- Q_UNIMPLEMENTED();
- return true;
-}
-
-bool QSslCertificate::isSelfSigned() const
-{
- Q_UNIMPLEMENTED();
- return true;
-}
-
-QByteArray QSslCertificate::version() const
-{
- Q_UNIMPLEMENTED();
- return QByteArray();
-}
-
-QByteArray QSslCertificate::serialNumber() const
-{
- Q_UNIMPLEMENTED();
- return QByteArray();
-}
-
-QStringList QSslCertificate::issuerInfo(SubjectInfo info) const
-{
- Q_UNIMPLEMENTED();
- return QStringList();
-}
-
-QStringList QSslCertificate::issuerInfo(const QByteArray &attribute) const
-{
- Q_UNIMPLEMENTED();
- return QStringList();
-}
-
-QStringList QSslCertificate::subjectInfo(SubjectInfo info) const
-{
- Q_UNIMPLEMENTED();
- return QStringList();
-}
-
-QStringList QSslCertificate::subjectInfo(const QByteArray &attribute) const
-{
- Q_UNIMPLEMENTED();
- return QStringList();
-}
-
-QList<QByteArray> QSslCertificate::subjectInfoAttributes() const
-{
- Q_UNIMPLEMENTED();
- return QList<QByteArray>();
-}
-
-QList<QByteArray> QSslCertificate::issuerInfoAttributes() const
-{
- Q_UNIMPLEMENTED();
- return QList<QByteArray>();
-}
-
-QMultiMap<QSsl::AlternativeNameEntryType, QString> QSslCertificate::subjectAlternativeNames() const
-{
- Q_UNIMPLEMENTED();
- return QMultiMap<QSsl::AlternativeNameEntryType, QString>();
-}
-
-QDateTime QSslCertificate::effectiveDate() const
-{
- Q_UNIMPLEMENTED();
- return QDateTime();
-}
-
-QDateTime QSslCertificate::expiryDate() const
-{
- Q_UNIMPLEMENTED();
- return QDateTime();
-}
-
-Qt::HANDLE QSslCertificate::handle() const
-{
- Q_UNIMPLEMENTED();
- return 0;
-}
-
-QSslKey QSslCertificate::publicKey() const
-{
- Q_UNIMPLEMENTED();
- return QSslKey();
-}
-
-QList<QSslCertificateExtension> QSslCertificate::extensions() const
-{
- Q_UNIMPLEMENTED();
- return QList<QSslCertificateExtension>();
-}
-
-QByteArray QSslCertificate::toPem() const
-{
- Q_UNIMPLEMENTED();
- return QByteArray();
-}
-
-QByteArray QSslCertificate::toDer() const
-{
- Q_UNIMPLEMENTED();
- return QByteArray();
-}
-
-QString QSslCertificate::toText() const
-{
- Q_UNIMPLEMENTED();
- return QString();
-}
-
-void QSslCertificatePrivate::init(const QByteArray &data, QSsl::EncodingFormat format)
-{
- Q_UNIMPLEMENTED();
-}
-
-QList<QSslCertificate> QSslCertificatePrivate::certificatesFromPem(const QByteArray &pem, int count)
-{
- Q_UNIMPLEMENTED();
- Q_UNUSED(pem)
- Q_UNUSED(count)
- return QList<QSslCertificate>();
-}
-
-QList<QSslCertificate> QSslCertificatePrivate::certificatesFromDer(const QByteArray &der, int count)
-{
- Q_UNIMPLEMENTED();
- Q_UNUSED(der)
- Q_UNUSED(count)
- return QList<QSslCertificate>();
-}
-
-QT_END_NAMESPACE