Files
cryptograph-projects/Advanced-Encryption-Standard/include/aes.h
klein panic 3aff0baacf testing
2025-02-01 16:14:45 -05:00

10 lines
168 B
C

#ifndef AES_H
#define AES_H
#include <stdint.h>
void aes_encrypt(uint8_t *message, uint8_t *key);
void aes_decrypt(uint8_t *message, uint8_t *key);
#endif // AES_H