📄 sslcontextrep.h
字号:
//%2006//////////////////////////////////////////////////////////////////////////// Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development// Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.// Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;// IBM Corp.; EMC Corporation, The Open Group.// Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;// IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.// Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;// EMC Corporation; VERITAS Software Corporation; The Open Group.// Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;// EMC Corporation; Symantec Corporation; The Open Group.//// Permission is hereby granted, free of charge, to any person obtaining a copy// of this software and associated documentation files (the "Software"), to// deal in the Software without restriction, including without limitation the// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or// sell copies of the Software, and to permit persons to whom the Software is// furnished to do so, subject to the following conditions:// // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN// ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED// "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT// LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.////==============================================================================////%/////////////////////////////////////////////////////////////////////////////#ifdef PEGASUS_HAS_SSL#define OPENSSL_NO_KRB5 1#include <openssl/err.h>#include <openssl/ssl.h>#include <openssl/rand.h>#else#define SSL_CTX void#endif#include <Pegasus/Common/SSLContext.h>#include <Pegasus/Common/Linkage.h>#include <Pegasus/Common/Mutex.h>#ifndef Pegasus_SSLContextRep_h#define Pegasus_SSLContextRep_hPEGASUS_NAMESPACE_BEGINclass SSLCallbackInfoRep{public: SSLCertificateVerifyFunction* verifyCertificateCallback; Array<SSLCertificateInfo*> peerCertificate; X509_STORE* crlStore;};class SSLContextRep{ /* SSL locking callback function. It is needed to perform locking on shared data structures. This function needs access to variable ssl_locks. Declare it as a friend of class SSLContextRep. @param mode Specifies whether to lock/unlock. @param type Type of lock. @param file File name of the function setting the lock. @param line Line number of the function setting the lock. */ friend void pegasus_locking_callback( int mode, int type, const char* file, int line);public: /** Constructor for a SSLContextRep object. @param trustStore trust store file path @param certPath server certificate file path @param keyPath server key file path @param verifyCert function pointer to a certificate verification call back function. @param randomFile file path of a random file that is used as a seed for random number generation by OpenSSL. @exception SSLException exception indicating failure to create a context. */ SSLContextRep( const String& trustStore, const String& certPath = String::EMPTY, const String& keyPath = String::EMPTY, const String& crlPath = String::EMPTY, SSLCertificateVerifyFunction* verifyCert = NULL, const String& randomFile = String::EMPTY); SSLContextRep(const SSLContextRep& sslContextRep); ~SSLContextRep(); SSL_CTX * getContext() const; String getTrustStore() const; String getCertPath() const; String getKeyPath() const;#ifdef PEGASUS_USE_DEPRECATED_INTERFACES String getTrustStoreUserName() const;#endif String getCRLPath() const; X509_STORE* getCRLStore() const; void setCRLStore(X509_STORE* store); Boolean isPeerVerificationEnabled() const; SSLCertificateVerifyFunction* getSSLCertificateVerifyFunction() const;private: SSL_CTX * _makeSSLContext(); void _randomInit(const String& randomFile); Boolean _verifyPrivateKey(SSL_CTX *ctx, const String& keyPath); /* Initialize the SSL locking environment. This function sets the locking callback functions. */ static void init_ssl(); /* Cleanup the SSL locking environment. */ static void free_ssl(); String _trustStore; String _certPath; String _keyPath; String _crlPath; String _randomFile; SSL_CTX * _sslContext; Boolean _verifyPeer; SSLCertificateVerifyFunction* _certificateVerifyFunction; X509_STORE* _crlStore; /* Mutex containing the SSL locks. */ static AutoArrayPtr<Mutex> _sslLocks; /* Count for instances of this class. This is used to initialize and free SSL locking objects. */ static int _countRep; /* Mutex for countRep. */ static Mutex _countRepMutex;};PEGASUS_NAMESPACE_END#endif /* Pegasus_SSLContextRep_h */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -