Home
last modified time | relevance | path

Searched refs:trust_level (Results 1 – 25 of 97) sorted by relevance

1234

/dports/www/kristall/kristall-6b39f244/src/widgets/
H A Dssltrusteditor.cpp18 this->ui->trust_level->clear(); in SslTrustEditor()
19 …this->ui->trust_level->addItem(tr("Trust on first encounter"), QVariant::fromValue<int>(SslTrust::… in SslTrustEditor()
20 …this->ui->trust_level->addItem(tr("Trust everything"), QVariant::fromValue<int>(SslTrust::TrustEve… in SslTrustEditor()
21 …this->ui->trust_level->addItem(tr("Manually verify fingerprints"), QVariant::fromValue<int>(SslTru… in SslTrustEditor()
53 this->ui->trust_level->setCurrentIndex( in setTrust()
54 this->ui->trust_level->findData(QVariant::fromValue<int>(trust.trust_level)) in setTrust()
85 …this->current_trust.trust_level = SslTrust::TrustLevel(this->ui->trust_level->itemData(index).toIn… in on_trust_level_currentIndexChanged()
/dports/deskutils/taskd/taskd-1.1.0/src/
H A DTLSServer.h39 enum trust_level { strict, allow_all }; enum
45 enum trust_level trust () const;
46 void trust (const enum trust_level);
67 enum trust_level _trust;
78 void trust (const enum TLSServer::trust_level);
92 enum TLSServer::trust_level _trust;
H A DTLSClient.h37 enum trust_level { strict, ignore_hostname, allow_all }; enum
43 void trust (const enum trust_level);
65 enum trust_level _trust;
H A Dapi.cpp183 std::string trust_level = config.get ("trust"); in taskd_sendMessage() local
184 client.trust (trust_level == "allow all" ? TLSClient::allow_all : in taskd_sendMessage()
185 trust_level == "ignore hostname" ? TLSClient::ignore_hostname : in taskd_sendMessage()
/dports/deskutils/taskd/taskd-1.1.0/src/tls/
H A DTLSServer.h39 enum trust_level { strict, allow_all }; enum
45 enum trust_level trust () const;
46 void trust (const enum trust_level);
67 enum trust_level _trust;
78 void trust (const enum TLSServer::trust_level);
92 enum TLSServer::trust_level _trust;
H A DTLSClient.h37 enum trust_level { strict, ignore_hostname, allow_all }; enum
43 void trust (const enum trust_level);
65 enum trust_level _trust;
/dports/mail/courier/courier-0.65.3/gpglib/
H A Dsign.c40 int trust_level, in libmail_gpg_signkey() argument
79 if (trust_level > 0 && trust_level <= 9) in libmail_gpg_signkey()
80 cmdstr[0]='0' + trust_level; in libmail_gpg_signkey()
/dports/multimedia/vlc/vlc-3.0.16/modules/demux/mkv/
H A Dmatroska_segment_seeker.hpp64 Seekpoint( fptr_t fpos, mtime_t pts, TrustLevel trust_level = TRUSTED ) in Seekpoint()
65 : fpos( fpos ), pts( pts ), trust_level( trust_level ) in Seekpoint()
79 TrustLevel trust_level; member
H A Dmatroska_segment_seeker.cpp122 if (sp.trust_level <= it->trust_level) in add_seekpoint()
176 Seekpoint::TrustLevel trust_level ) in get_first_seekpoint_around() argument
196 if( it_before->trust_level >= trust_level ) in get_first_seekpoint_around()
254 if( track_points.first.trust_level > Seekpoint::DISABLED && in get_seekpoints_around()
258 if( track_points.second.trust_level > Seekpoint::DISABLED && in get_seekpoints_around()
/dports/deskutils/taskwarrior/taskwarrior-2.6.1/src/
H A DTLSClient.h37 enum trust_level { strict, ignore_hostname, allow_all }; enum
43 void trust (const enum trust_level);
65 enum trust_level _trust {strict};
/dports/www/kristall/kristall-6b39f244/src/
H A Dssltrust.cpp8 trust_level = TrustLevel(settings.value("trust_level", int(TrustOnFirstUse)).toInt()); in load()
33 settings.setValue("trust_level", int(trust_level)); in save()
81 if(trust_level == TrustEverything) in getTrust()
93 if(trust_level == TrustOnFirstUse) in getTrust()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.Management/
H A DWebApplicationInformation.cs37 … string application_domain, application_path, application_virtual_path, machine_name, trust_level; field in System.Web.Management.WebApplicationInformation
70 return trust_level;
/dports/x11-toolkits/py-xlib/python-xlib-0.27/Xlib/ext/
H A Dsecurity.py93 trust_level=None, group=None, event_mask=None): argument
99 if trust_level is not None:
101 values.append(trust_level)
/dports/net-im/dino/dino-0.2.2/plugins/omemo/src/logic/
H A Dtrust_manager.vala39 public void set_device_trust(Account account, Jid jid, int device_id, TrustLevel trust_level) {
45 .set(db.identity_meta.trust_level, trust_level).perform();
61 ….set(app_db.content_item.hide, trust_level == TrustLevel.UNTRUSTED || trust_level == TrustLevel.UN…
66 if (trust_level == TrustLevel.TRUSTED) {
204 …if(device[db.identity_meta.trust_level] != TrustLevel.UNKNOWN || device[db.identity_meta.identity_…
245 …rustLevel trust_level = (TrustLevel) db.identity_meta.get_device(identity_id, jid.bare_jid.to_stri…
246 if (trust_level == TrustLevel.UNTRUSTED || trust_level == TrustLevel.UNKNOWN) {
257 … .value(db.content_item_meta.trusted_when_received, trust_level != TrustLevel.UNTRUSTED)
H A Ddatabase.vala18 …public Column<int> trust_level = new Column.Integer("trust_level") { default = TrustLevel.UNKNOWN.…
26 …address_name, device_id, identity_key_public_base64, trusted_identity, trust_level, now_active, la…
66 .value(this.trust_level, trust).perform();
80 .value(this.trust_level, trust).perform();
109 .with(this.trust_level, "!=", TrustLevel.UNTRUSTED)
115 .with(this.trust_level, "!=", TrustLevel.UNKNOWN)
126 .with(this.trust_level, "=", TrustLevel.UNKNOWN)
/dports/www/chromium-legacy/chromium-88.0.4324.182/ios/web/web_state/ui/
H A Djs_window_error_manager.mm41 web::URLVerificationTrustLevel trust_level =
43 const GURL current_url = web_state_impl_->GetCurrentURL(&trust_level);
/dports/net-im/signald/signald-65cf5e8a1cf2b81fd1f5c3936e0164d53c5a9b29/src/main/java/io/finn/signald/
H A DJsonIdentity.java34 public String trust_level; field in JsonIdentity
42 this.trust_level = identity.getTrustLevel().name(); in JsonIdentity()
/dports/sysutils/py-salt/salt-3004.1/salt/states/
H A Dgpg.py86 trust_level=trust,
124 trust_level=trust,
/dports/security/gnupg/gnupg-2.3.3/g10/
H A Dtofu.c1558 int *trust_level, in ask_about_binding() argument
2676 int trust_level = TRUST_UNKNOWN; in get_trust() local
2723 trust_level = TRUST_ULTIMATE; in get_trust()
2795 &trust_level, in get_trust()
2804 trust_level = TRUST_UNDEFINED; in get_trust()
2857 return trust_level; in get_trust()
3756 int trust_level = TRUST_UNKNOWN; in tofu_get_validity() local
3841 trust_level = TRUST_NEVER; in tofu_get_validity()
3845 else if (tl > trust_level) in tofu_get_validity()
3858 trust_level = tl; in tofu_get_validity()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/ios/web/public/test/fakes/
H A Dtest_web_state.mm227 GURL TestWebState::GetCurrentURL(URLVerificationTrustLevel* trust_level) const {
228 if (trust_level) {
229 *trust_level = trust_level_;
420 void TestWebState::SetTrustLevel(URLVerificationTrustLevel trust_level) {
421 trust_level_ = trust_level;
/dports/net-im/dino/dino-0.2.2/plugins/omemo/src/ui/
H A Dencryption_list_entry.vala30 …RowOption row = db.content_item_meta.select( { db.identity_meta.trust_level } ).with(db.content_it…
35 … if (row.is_present() && (TrustLevel) row[db.identity_meta.trust_level] == TrustLevel.VERIFIED) {
/dports/devel/git-svn/git-2.34.1/
H A Dgpg-interface.c263 if (parse_gpg_trust_level(trust, &sigc->trust_level)) { in parse_gpg_output()
385 sigc->trust_level = TRUST_NEVER; in parse_ssh_output()
402 sigc->trust_level = TRUST_FULLY; in parse_ssh_output()
407 sigc->trust_level = TRUST_UNDEFINED; in parse_ssh_output()
572 sigc->trust_level = -1; in check_signature()
585 status |= sigc->trust_level < configured_min_trust_level; in check_signature()
/dports/devel/git-gui/git-2.34.1/
H A Dgpg-interface.c263 if (parse_gpg_trust_level(trust, &sigc->trust_level)) { in parse_gpg_output()
385 sigc->trust_level = TRUST_NEVER; in parse_ssh_output()
402 sigc->trust_level = TRUST_FULLY; in parse_ssh_output()
407 sigc->trust_level = TRUST_UNDEFINED; in parse_ssh_output()
572 sigc->trust_level = -1; in check_signature()
585 status |= sigc->trust_level < configured_min_trust_level; in check_signature()
/dports/devel/git-p4/git-2.34.1/
H A Dgpg-interface.c263 if (parse_gpg_trust_level(trust, &sigc->trust_level)) {
385 sigc->trust_level = TRUST_NEVER;
402 sigc->trust_level = TRUST_FULLY;
407 sigc->trust_level = TRUST_UNDEFINED;
572 sigc->trust_level = -1;
585 status |= sigc->trust_level < configured_min_trust_level;
/dports/devel/git/git-2.34.1/
H A Dgpg-interface.c263 if (parse_gpg_trust_level(trust, &sigc->trust_level)) { in parse_gpg_output()
385 sigc->trust_level = TRUST_NEVER; in parse_ssh_output()
402 sigc->trust_level = TRUST_FULLY; in parse_ssh_output()
407 sigc->trust_level = TRUST_UNDEFINED; in parse_ssh_output()
572 sigc->trust_level = -1; in check_signature()
585 status |= sigc->trust_level < configured_min_trust_level; in check_signature()

1234