(self, raw_data)
| 57 | self.hash_alg = getattr(self, f"SHA{sha_type}") |
| 58 | |
| 59 | def prepare_key(self, raw_data): |
| 60 | return OctKey.import_key(raw_data) |
| 61 | |
| 62 | def sign(self, msg, key): |
| 63 | # it is faster than the one in cryptography |
nothing calls this directly
no test coverage detected