| 46 | } |
| 47 | |
| 48 | Bytes randomBytes(size_t num_bytes) { |
| 49 | Bytes random_bytes(num_bytes); |
| 50 | randombytes_buf(random_bytes.data(), num_bytes); |
| 51 | return random_bytes; |
| 52 | } |
| 53 | |
| 54 | std::string EncryptionType::name() { return crypto_secretbox_primitive(); } |
| 55 |
no outgoing calls
no test coverage detected