(b)
| 9 | from cryptography.hazmat.primitives.ciphers.aead import AESGCM |
| 10 | |
| 11 | def sha256_bytes(b): |
| 12 | sha = hashlib.sha256() |
| 13 | sha.update(b) |
| 14 | return sha.digest() |
| 15 | |
| 16 | def process(data, args): |
| 17 | # Generate ECC private key A |
nothing calls this directly
no outgoing calls
no test coverage detected