(self, context, info)
| 52 | return |
| 53 | |
| 54 | def _lib_cryptography(self, context, info): |
| 55 | try: |
| 56 | signature = context.node.apply_signature("key_size", backend=None) |
| 57 | except TypeError: # Signature call doesn't match parameters/kws |
| 58 | return |
| 59 | key_size = signature.args[0] |
| 60 | if isinstance(key_size, Number): |
| 61 | key_size = key_size.value |
| 62 | elif not type(key_size) == int: |
| 63 | return |
| 64 | |
| 65 | yield self._gen_hit(context, info, key_size) |
| 66 | |
| 67 | def _lib_crypto(self, context, info): |
| 68 | try: |
nothing calls this directly
no test coverage detected