/* BLURB lgpl Coda File System Release 6 Copyright (c) 2006 Carnegie Mellon University Additional copyrights listed below This code is distributed "AS IS" without warranty of any kind under the terms of the GNU Library General Public Licence Version 2, as shown in the file LICENSE. The technical and financial contributors to Coda are listed in the file CREDITS. Additional copyrights #*/ #include #include static int init(void **ctx, const uint8_t *key, size_t len) { return 0; } static void release(void **ctx) { return; } static int decrypt(void *ctx, const uint8_t *in, uint8_t *out, size_t len, const uint8_t *iv, const uint8_t *aad, size_t aad_len) { if (out != in) memcpy(out, in, len); return len; } static int encrypt(void *ctx, const uint8_t *in, uint8_t *out, size_t len, uint8_t *iv, const uint8_t *aad, size_t aad_len) { return decrypt(ctx, in, out, len, iv, aad, aad_len); } struct secure_encr secure_ENCR_NULL = { .id = SECURE_ENCR_NULL, .name = "ENCR-NULL", .encrypt_init = init, .encrypt_free = release, .encrypt = encrypt, .decrypt_init = init, .decrypt_free = release, .decrypt = decrypt, };