]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/stub_libsslsquid.cc
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / tests / stub_libsslsquid.cc
1 /*
2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 #include "squid.h"
10
11 #if USE_OPENSSL
12
13 #include "fatal.h"
14 #include "sbuf/Algorithms.h"
15 #include "sbuf/SBuf.h"
16
17 /* Stub File for the ssl/libsslsquid.la convenience library */
18
19 #define STUB_API "ssl/libsslsquid.la"
20 #include "tests/STUB.h"
21
22 #include "ssl/Config.h"
23 Ssl::Config::Config():
24 #if USE_SSL_CRTD
25 ssl_crtd(NULL),
26 #endif
27 ssl_crt_validator(NULL)
28 {
29 ssl_crt_validator_Children.concurrency = 1;
30 STUB_NOP
31 }
32 Ssl::Config::~Config() STUB_NOP
33 Ssl::Config Ssl::TheConfig;
34
35 #include "ssl/context_storage.h"
36 //Ssl::CertificateStorageAction::CertificateStorageAction(const Mgr::Command::Pointer &cmd) STUB
37 Ssl::CertificateStorageAction::Pointer Ssl::CertificateStorageAction::Create(const Mgr::Command::Pointer &cmd) STUB_RETSTATREF(Ssl::CertificateStorageAction::Pointer)
38 void Ssl::CertificateStorageAction::dump(StoreEntry *sentry) STUB
39 void Ssl::GlobalContextStorage::addLocalStorage(Ip::Address const & address, size_t size_of_store) STUB
40 Ssl::LocalContextStorage *Ssl::GlobalContextStorage::getLocalStorage(Ip::Address const & address)
41 { fatal(STUB_API " required"); static LocalContextStorage v(0); return &v; }
42 void Ssl::GlobalContextStorage::reconfigureStart() STUB
43 //Ssl::GlobalContextStorage Ssl::TheGlobalContextStorage;
44
45 #include "ssl/ErrorDetail.h"
46 Security::ErrorCode parseErrorString(const char *name) STUB_RETVAL(0)
47
48 #include "ssl/support.h"
49 namespace Ssl
50 {
51 int AskPasswordCb(char *, int, int, void *) STUB_RETVAL(0)
52 bool InitServerContext(Security::ContextPointer &, AnyP::PortCfg &) STUB_RETVAL(false)
53 bool InitClientContext(Security::ContextPointer &, Security::PeerOptions &, Security::ParsedPortFlags) STUB_RETVAL(false)
54 void ConfigurePeerVerification(Security::ContextPointer &, const Security::ParsedPortFlags) STUB
55 void DisablePeerVerification(Security::ContextPointer &) STUB
56 void MaybeSetupRsaCallback(Security::ContextPointer &) STUB
57 } // namespace Ssl
58 const char *sslGetUserEmail(SSL *ssl) STUB_RETVAL(NULL)
59 const char *sslGetUserAttribute(SSL *ssl, const char *attribute_name) STUB_RETVAL(NULL)
60 const char *sslGetCAAttribute(SSL *ssl, const char *attribute_name) STUB_RETVAL(NULL)
61 SBuf sslGetUserCertificatePEM(SSL *ssl) STUB_RETVAL(SBuf())
62 SBuf sslGetUserCertificateChainPEM(SSL *ssl) STUB_RETVAL(SBuf())
63 namespace Ssl
64 {
65 //GETX509ATTRIBUTE GetX509UserAttribute;
66 //GETX509ATTRIBUTE GetX509CAAttribute;
67 //GETX509ATTRIBUTE GetX509Fingerprint;
68 std::vector<const char *> BumpModeStr = {""};
69 bool generateUntrustedCert(Security::CertPointer &, Security::PrivateKeyPointer &, Security::CertPointer const &, Security::PrivateKeyPointer const &) STUB_RETVAL(false)
70 Security::ContextPointer GenerateSslContext(CertificateProperties const &, Security::ServerOptions &, bool) STUB_RETVAL(Security::ContextPointer())
71 bool verifySslCertificate(Security::ContextPointer &, CertificateProperties const &) STUB_RETVAL(false)
72 Security::ContextPointer GenerateSslContextUsingPkeyAndCertFromMemory(const char *, Security::ServerOptions &, bool) STUB_RETVAL(Security::ContextPointer())
73 int matchX509CommonNames(X509 *peer_cert, void *check_data, int (*check_func)(void *check_data, ASN1_STRING *cn_data)) STUB_RETVAL(0)
74 bool checkX509ServerValidity(X509 *cert, const char *server) STUB_RETVAL(false)
75 int asn1timeToString(ASN1_TIME *tm, char *buf, int len) STUB_RETVAL(0)
76 void setClientSNI(SSL *ssl, const char *fqdn) STUB
77 SBuf GetX509PEM(SSL *ssl) STUB_RETVAL(SBuf())
78 } //namespace Ssl
79
80 #endif
81