Home
last modified time | relevance | path

Searched refs:_trust (Results 1 – 25 of 181) sorted by relevance

12345678

/dports/devel/py-keystoneauth1/keystoneauth1-4.4.0/keystoneauth1/access/
H A Daccess.py507 def _trust(self): member in AccessInfoV2
512 return self._trust['id']
516 return bool(self._trust)
520 return self._trust['trustee_user_id']
714 def _trust(self): member in AccessInfoV3
719 return self._trust['id']
724 return bool(self._trust)
730 return self._trust['trustee_user']['id']
734 return self._trust['trustor_user']['id']
/dports/deskutils/taskwarrior/taskwarrior-2.6.1/src/
H A DTLSClient.cpp109 _trust = value; in trust()
112 if (_trust == allow_all) in trust()
114 else if (_trust == ignore_hostname) in trust()
216 if (_trust == TLSClient::ignore_hostname) in connect()
218 else if (_trust == TLSClient::strict) in connect()
349 if (_trust == TLSClient::allow_all) in verify_certificate()
360 if (_trust == TLSClient::ignore_hostname) in verify_certificate()
390 if ((status == 0) && (_trust != TLSClient::ignore_hostname)) in verify_certificate()
H A DTLSClient.h65 enum trust_level _trust {strict}; enum
/dports/deskutils/taskd/taskd-1.1.0/src/
H A DTLSClient.cpp79 , _trust(strict) in TLSClient()
118 _trust = value; in trust()
121 if (_trust == allow_all) in trust()
123 else if (_trust == ignore_hostname) in trust()
294 if (_trust == TLSClient::allow_all) in verify_certificate()
305 if (_trust == TLSClient::ignore_hostname) in verify_certificate()
335 if ((status == 0) && (_trust != TLSClient::ignore_hostname)) in verify_certificate()
H A DTLSServer.cpp77 , _trust (TLSServer::strict) in TLSServer()
116 return _trust; in trust()
122 _trust = value; in trust()
125 if (_trust == allow_all) in trust()
295 , _trust (TLSServer::strict) in TLSTransaction()
421 _trust = value; in trust()
433 if (_trust == TLSServer::allow_all) in verify_certificate()
H A DTLSServer.h67 enum trust_level _trust; variable
92 enum TLSServer::trust_level _trust; variable
H A DTLSClient.h65 enum trust_level _trust; variable
/dports/deskutils/taskd/taskd-1.1.0/src/tls/
H A DTLSClient.cpp74 , _trust(strict) in TLSClient()
113 _trust = value; in trust()
116 if (_trust == allow_all) in trust()
118 else if (_trust == ignore_hostname) in trust()
289 if (_trust == TLSClient::allow_all) in verify_certificate()
298 if (_trust == TLSClient::ignore_hostname) in verify_certificate()
317 if ((status == 0) && (_trust != TLSClient::ignore_hostname)) in verify_certificate()
H A DTLSServer.cpp75 , _trust (TLSServer::strict) in TLSServer()
114 return _trust; in trust()
120 _trust = value; in trust()
123 if (_trust == allow_all) in trust()
286 , _trust (TLSServer::strict) in TLSTransaction()
412 _trust = value; in trust()
424 if (_trust == TLSServer::allow_all) in verify_certificate()
H A DTLSServer.h67 enum trust_level _trust; variable
92 enum TLSServer::trust_level _trust; variable
H A DTLSClient.h65 enum trust_level _trust; variable
/dports/dns/unbound/unbound-1.14.0/winrc/
H A Dunbound-control-setup.cmd113 "%SSL_PROGRAM%" x509 -in %SVR_BASE%.pem -addtrust serverAuth -out %SVR_BASE%_trust.pem
132 … request.cfg -new | "%SSL_PROGRAM%" x509 -req -days %DAYS% -CA %SVR_BASE%_trust.pem -CAkey %SVR_BA…
139 rem "%SSL_PROGRAM%" x509 -in %CTL_BASE%.pem -addtrust clientAuth -out %CTL_BASE%_trust.pem
146 rem "%SSL_PROGRAM%" pkcs12 -export -in %CTL_BASE%_trust.pem -inkey %CTL_BASE%.key -name "unbound re…
150 del /F /Q /S %CTL_BASE%_trust.pem
151 del /F /Q /S %SVR_BASE%_trust.pem
152 del /F /Q /S %SVR_BASE%_trust.srl
/dports/security/py-gnupg/python-gnupg-3.1.1/pretty_bad_protocol/
H A Dgnupg.py41 from . import _trust
171 @functools.wraps(_trust._create_trustdb)
174 _trust._create_trustdb(self)
180 @functools.wraps(_trust.fix_trustdb)
183 _trust.fix_trustdb(self)
189 @functools.wraps(_trust.import_ownertrust)
192 _trust.import_ownertrust(self)
198 @functools.wraps(_trust.export_ownertrust)
201 _trust.export_ownertrust(self)
/dports/devel/php-ice37/ice-3.7.2/cpp/src/IceSSL/
H A DSecureTransportTransceiverI.cpp264 assert(!_trust); in initialize()
265 err = SSLCopyPeerTrust(_ssl.get(), &_trust.get()); in initialize()
267 if(_incoming && _engine->getVerifyPeer() == 1 && (err == errSSLBadCert || !_trust)) in initialize()
276 _verified = checkTrustResult(_trust.get(), _engine, _instance, _host); in initialize()
292 for(int i = 0, count = SecTrustGetCertificateCount(_trust.get()); i < count; ++i) in initialize()
294 SecCertificateRef cert = SecTrustGetCertificateAtIndex(_trust.get(), i); in initialize()
348 _trust.reset(0); in close()
H A DSecureTransportTransceiverI.h66 IceInternal::UniqueRef<SecTrustRef> _trust; variable
/dports/devel/ice37/ice-3.7.2/cpp/src/IceSSL/
H A DSecureTransportTransceiverI.cpp264 assert(!_trust); in initialize()
265 err = SSLCopyPeerTrust(_ssl.get(), &_trust.get()); in initialize()
267 if(_incoming && _engine->getVerifyPeer() == 1 && (err == errSSLBadCert || !_trust)) in initialize()
276 _verified = checkTrustResult(_trust.get(), _engine, _instance, _host); in initialize()
292 for(int i = 0, count = SecTrustGetCertificateCount(_trust.get()); i < count; ++i) in initialize()
294 SecCertificateRef cert = SecTrustGetCertificateAtIndex(_trust.get(), i); in initialize()
348 _trust.reset(0); in close()
H A DSecureTransportTransceiverI.h66 IceInternal::UniqueRef<SecTrustRef> _trust; variable
/dports/devel/py-ice37/ice-3.7.2/cpp/src/IceSSL/
H A DSecureTransportTransceiverI.cpp264 assert(!_trust); in initialize()
265 err = SSLCopyPeerTrust(_ssl.get(), &_trust.get()); in initialize()
267 if(_incoming && _engine->getVerifyPeer() == 1 && (err == errSSLBadCert || !_trust)) in initialize()
276 _verified = checkTrustResult(_trust.get(), _engine, _instance, _host); in initialize()
292 for(int i = 0, count = SecTrustGetCertificateCount(_trust.get()); i < count; ++i) in initialize()
294 SecCertificateRef cert = SecTrustGetCertificateAtIndex(_trust.get(), i); in initialize()
348 _trust.reset(0); in close()
H A DSecureTransportTransceiverI.h66 IceInternal::UniqueRef<SecTrustRef> _trust; variable
/dports/security/p11-kit/p11-kit-0.24.0/bash-completion/
H A Dtrust3 _trust()
65 complete -F _trust trust
/dports/lang/yap/yap-6.2.2/C/
H A Dclause_list.c86 code_p->opc = Yap_opcode(_trust); in Yap_ClauseListExtend()
100 code_p->opc = Yap_opcode(_trust); in Yap_ClauseListExtend()
/dports/devel/py-openstacksdk/openstacksdk-0.60.0/openstack/identity/v3/
H A D_proxy.py39 from openstack.identity.v3 import trust as _trust unknown
701 return self._create(_trust.Trust, **attrs)
716 self._delete(_trust.Trust, trust, ignore_missing=ignore_missing)
729 return self._find(_trust.Trust, name_or_id,
742 return self._get(_trust.Trust, trust)
754 return self._list(_trust.Trust, **query)
/dports/mail/spamassassin-devel/spamassassin-1ea352210/rulesrc/sandbox/khopesh/
H A D20_trust.cf9 ## https://ruleqa.spamassassin.org/?srcpath=20_trust.cf
/dports/math/bonmin/Bonmin-releases-1.8.8/Bonmin/doc/
H A Doptions_table.tex31 number\_before\_trust& I& $\surd$& $\surd$& $\surd$& $\surd$& $\surd$& $\surd$& $\surd$\\
150 number\_before\_trust\_list& I& $\surd$& $\surd$& $\surd$& $\surd$& $\surd$& $\surd$& -\\
/dports/devel/opendht/opendht-1.10.1/python/
H A Dopendht.pyx395 cdef cpp.TrustList _trust
397 self._trust.add(deref(cert._cert.get()))
399 self._trust.remove(deref(cert._cert.get()))
402 r._result = self._trust.verify(deref(cert._cert.get()))

12345678