Rizin
unix-like reverse engineering framework and cli tools
aes192-encrypt.c File Reference
#include <assert.h>
#include "aes-internal.h"

Go to the source code of this file.

Functions

void nettle_aes192_encrypt (const struct aes192_ctx *ctx, size_t length, uint8_t *dst, const uint8_t *src)
 

Function Documentation

◆ nettle_aes192_encrypt()

void nettle_aes192_encrypt ( const struct aes192_ctx ctx,
size_t  length,
uint8_t dst,
const uint8_t src 
)

Definition at line 55 of file aes192-encrypt.c.

58 {
61  length, dst, src);
62 }
void _nettle_aes_encrypt(unsigned rounds, const uint32_t *keys, const struct aes_table *T, size_t length, uint8_t *dst, const uint8_t *src)
const struct aes_table _nettle_aes_encrypt_table
#define _AES192_ROUNDS
Definition: aes.h:74
lzma_index * src
Definition: index.h:567
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset struct stat static buf void long static basep static whence static length const void static len static semflg const void static shmflg const struct timespec struct timespec static rem const char static group const void length
Definition: sflib.h:133
char * dst
Definition: lz4.h:724
assert(limit<=UINT32_MAX/2)
#define AES_BLOCK_SIZE
Definition: zipint.h:77

References _AES192_ROUNDS, _nettle_aes_encrypt(), _nettle_aes_encrypt_table, AES_BLOCK_SIZE, assert(), dst, length, and src.

Referenced by _zip_crypto_aes_encrypt_block().