| 97 | } |
| 98 | |
| 99 | WasiCryptoExpect<SecretVec> i2dPrivateKey(EVP_PKEY *Key) { |
| 100 | return writeKeyToBio<SecretVec>(Key, i2d_PrivateKey_bio); |
| 101 | } |
| 102 | |
| 103 | ECDSA_SIG *d2iEcdsaSig(Span<const uint8_t> Encoded) { |
| 104 | if (Encoded.size() > static_cast<size_t>(std::numeric_limits<long>::max())) { |
no outgoing calls
no test coverage detected