#include "crypto/s2n_cipher.h"
#include "error/s2n_errno.h"
#include "utils/s2n_blob.h"
#include "utils/s2n_safety.h"
static bool s2n_stream_cipher_null_available(void)
{
return true;
}
static int s2n_stream_cipher_null_endecrypt(struct s2n_session_key *key, struct s2n_blob *in, struct s2n_blob *out)
{
S2N_ERROR_IF(out->size < in->size, S2N_ERR_SIZE_MISMATCH);
if (in->data != out->data) {
POSIX_CHECKED_MEMCPY(out->data, in->data, out->size);
}
return 0;
}
static S2N_RESULT s2n_stream_cipher_null_get_key(struct s2n_session_key *key, struct s2n_blob *in)
{
return S2N_RESULT_OK;
}
static S2N_RESULT s2n_stream_cipher_null_destroy_key(struct s2n_session_key *key)
{
return S2N_RESULT_OK;
}
static S2N_RESULT s2n_stream_cipher_null_init(struct s2n_session_key *key)
{
return S2N_RESULT_OK;
}
const struct s2n_cipher s2n_null_cipher = {
.type = S2N_STREAM,
.key_material_size = 0,
.io.stream = {
.decrypt = s2n_stream_cipher_null_endecrypt,
.encrypt = s2n_stream_cipher_null_endecrypt },
.is_available = s2n_stream_cipher_null_available,
.init = s2n_stream_cipher_null_init,
.set_encryption_key = s2n_stream_cipher_null_get_key,
.set_decryption_key = s2n_stream_cipher_null_get_key,
.destroy_key = s2n_stream_cipher_null_destroy_key,
};