/* ecrypt-ssyn.c */ /* *** Please do not edit this file. *** */ #include "ecrypt-ssyn.h" #ifdef ECRYPT_USES_DEFAULT_ALL_IN_ONE /* * Default implementation of all-in-one encryption/decryption of * (short) packets. */ #ifdef ECRYPT_HAS_SINGLE_PACKET_FUNCTION void ECRYPT_process_packet( int action, ECRYPT_ctx* ctx, const u8* iv, const u8* input, u8* output, u32 msglen) { u8 previous[ECRYPT_SYNCLENGTH]; ECRYPT_ivsetup(ctx, previous, iv); #ifdef ECRYPT_HAS_SINGLE_BYTE_FUNCTION ECRYPT_process_bytes(action, ctx, previous, input, output, msglen); #else if (action == 0) ECRYPT_encrypt_bytes(ctx, previous, input, output, msglen); else ECRYPT_decrypt_bytes(ctx, previous, input, output, msglen); #endif } #else void ECRYPT_encrypt_packet( ECRYPT_ctx* ctx, const u8* iv, const u8* plaintext, u8* ciphertext, u32 msglen) { u8 previous[ECRYPT_SYNCLENGTH]; ECRYPT_ivsetup(ctx, previous, iv); ECRYPT_encrypt_bytes(ctx, previous, plaintext, ciphertext, msglen); } void ECRYPT_decrypt_packet( ECRYPT_ctx* ctx, const u8* iv, const u8* ciphertext, u8* plaintext, u32 msglen) { u8 previous[ECRYPT_SYNCLENGTH]; ECRYPT_ivsetup(ctx, previous, iv); ECRYPT_decrypt_bytes(ctx, previous, ciphertext, plaintext, msglen); } #endif #endif