(self, enc_alg, ek, headers, key)
| 39 | return {"ek": b"", "cek": cek} |
| 40 | |
| 41 | def unwrap(self, enc_alg, ek, headers, key): |
| 42 | cek = key.get_op_key("decrypt") |
| 43 | if len(cek) * 8 != enc_alg.CEK_SIZE: |
| 44 | cek = secrets.token_bytes(enc_alg.CEK_SIZE // 8) |
| 45 | return cek |
| 46 | |
| 47 | |
| 48 | class RSAAlgorithm(JWEAlgorithm): |
nothing calls this directly
no test coverage detected