⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ksslcertificate.h

📁 将konqueror浏览器移植到ARM9 2410中
💻 H
字号:
/* This file is part of the KDE project * * Copyright (C) 2000 George Staikos <staikos@kde.org> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB.  If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */#ifndef _KSSLCERTIFICATE_H#define _KSSLCERTIFICATE_H// PRENOTE:  This object is very heavy to copy.  Please try to pass by//           reference or pointer whenever possible.// UPDATE: I like the structure of this class less and less every time I look//         at it.  I think it needs to change.//////  The biggest reason for making everything protected here is so that//  the class can have all it's methods available even if openssl is not//  available.  Also, to create a new certificate you should use the//  KSSLCertificateFactory, and to manage the user's database of certificates,//  you should go through the KSSLCertificateHome.////  There should be no reason to touch the X509 stuff directly.//#include <qcstring.h>class QString;class QCString;class KSSL;class KSSLCertificatePrivate;class QDateTime;class KSSLCertChain;#ifdef HAVE_CONFIG_H#include <config.h>#endif#ifdef HAVE_SSLtypedef struct x509_st X509;#elseclass X509;#endifclass KSSLCertificate {friend class KSSL;friend class KSSLCertificateHome;friend class KSSLCertificateFactory;friend class KSSLCertificateCache;friend class KSSLCertChain;friend class KSSLPeerInfo;friend class KSSLPKCS12;friend class KSSLD;public:  ~KSSLCertificate();  static KSSLCertificate *fromString(QCString cert);  // We need a static method to generate one of these, given a filename that  // points to a PEM encoded certificate file.  It will return NULL on failure.  // (that's why I don't want to use a constructor)  enum KSSLValidation { Unknown, Ok, NoCARoot, InvalidPurpose,                        PathLengthExceeded, InvalidCA, Expired,                        SelfSigned, ErrorReadingRoot, NoSSL,                        Revoked, Untrusted, SignatureFailed,                        Rejected };  QString toString();  QString getSubject() const;  QString getIssuer() const;  QString getNotBefore() const;  QString getNotAfter() const;  QDateTime getQDTNotBefore() const;  QDateTime getQDTNotAfter() const;  QByteArray toDer();  QByteArray toPem();  QByteArray toNetscape();  QString    toText();  // getSerialNumber() const;  // getSignatureType() const;  // get public key ??  bool isValid();  KSSLValidation validate();  KSSLValidation revalidate();  KSSLCertChain& chain();  static QString verifyText(KSSLValidation x);  KSSLCertificate *replicate();  KSSLCertificate(const KSSLCertificate& x); // copy constructor         friend int operator==(KSSLCertificate &x, KSSLCertificate &y);  inline friend int operator!=(KSSLCertificate &x, KSSLCertificate &y)                                                        { return !(x == y); }  bool setCert(QString& cert);private:  KSSLCertificatePrivate *d;protected:  KSSLCertificate();  void setCert(X509 *c);  void setChain(void *c);  X509 *getCert();  KSSLValidation processError(int ec);};QDataStream& operator<<(QDataStream& s, const KSSLCertificate& r);QDataStream& operator>>(QDataStream& s, KSSLCertificate& r);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -