コード例 #1
0
ファイル: gpg.py プロジェクト: dabrahams/zeroinstall
	def is_trusted(self, domain = None):
		"""Asks the L{trust.trust_db}."""
		return trust_db.is_trusted(self.status[self.FINGERPRINT], domain)
コード例 #2
0
ファイル: gpg.py プロジェクト: AlexanderRyzhko/0install-TUF
	def is_trusted(self, domain = None):
		"""Asks the L{trust.trust_db}.
		@type domain: str | None
		@rtype: bool"""
		return trust_db.is_trusted(self.status[self.FINGERPRINT], domain)
コード例 #3
0
ファイル: gpg.py プロジェクト: timdiels/0install
 def is_trusted(self, domain=None):
     """Asks the L{trust.trust_db}."""
     return trust_db.is_trusted(self.status[self.FINGERPRINT], domain)
コード例 #4
0
    def is_trusted(self, domain=None):
        """Asks the L{trust.trust_db}.
		@type domain: str | None
		@rtype: bool"""
        return trust_db.is_trusted(self.status[self.FINGERPRINT], domain)