Home
last modified time | relevance | path

Searched refs:BinGPG (Results 1 – 4 of 4) sorted by relevance

/dports/security/py-muacrypt/muacrypt-0.9.1/test_muacrypt/
H A Dtest_bingpg.py8 from muacrypt.bingpg import cached_property, BinGPG, KeyInfo
33 b = BinGPG(tmpdir.strpath, gpgpath=bn)
36 b = BinGPG(tmpdir.strpath)
42 BinGPG(tmpdir.strpath, gpgpath="123")
/dports/security/py-muacrypt/muacrypt-0.9.1/muacrypt/
H A Dtesting_plugin.py12 from .bingpg import find_executable, BinGPG
66 old_gen_secret_key = BinGPG.gen_secret_key
83 monkeypatch.setattr(BinGPG, "gen_secret_key", gen_secret_key)
86 old_init = BinGPG.__init__
92 monkeypatch.setattr(BinGPG, "__init__", __init__)
103 bingpg = BinGPG(gpgpath=gpgpath)
106 bingpg = BinGPG(p.strpath, gpgpath=gpgpath)
H A Daccount.py18 from .bingpg import cached_property, BinGPG
281 return BinGPG(homedir=gpghome, gpgpath=self.ownstate.gpgbin)
H A Dbingpg.py62 class BinGPG(object): class