(self, passphrase, enc_alg, hash_alg)
| 933 | return True # pragma: no cover |
| 934 | |
| 935 | def protect(self, passphrase, enc_alg, hash_alg): |
| 936 | self.keymaterial.encrypt_keyblob(passphrase, enc_alg, hash_alg) |
| 937 | del passphrase |
| 938 | self.update_hlen() |
| 939 | |
| 940 | def unprotect(self, passphrase): |
| 941 | self.keymaterial.decrypt_keyblob(passphrase) |
nothing calls this directly
no test coverage detected