mirror of
https://github.com/rdolbeau/VexRiscvBPluginGenerator.git
synced 2025-04-18 18:44:42 -04:00
28 lines
1.3 KiB
C
28 lines
1.3 KiB
C
#ifndef crypto_core_aes256decrypt_H
|
|
#define crypto_core_aes256decrypt_H
|
|
|
|
#define crypto_core_aes256decrypt_dolbeau_std_4ft_OUTPUTBYTES 16
|
|
#define crypto_core_aes256decrypt_dolbeau_std_4ft_INPUTBYTES 16
|
|
#define crypto_core_aes256decrypt_dolbeau_std_4ft_KEYBYTES 32
|
|
#define crypto_core_aes256decrypt_dolbeau_std_4ft_CONSTBYTES 0
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
extern int crypto_core_aes256decrypt_dolbeau_std_4ft(unsigned char *,const unsigned char *,const unsigned char *,const unsigned char *);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#define crypto_core_aes256decrypt crypto_core_aes256decrypt_dolbeau_std_4ft
|
|
#define crypto_core_aes256decrypt_OUTPUTBYTES crypto_core_aes256decrypt_dolbeau_std_4ft_OUTPUTBYTES
|
|
#define crypto_core_aes256decrypt_INPUTBYTES crypto_core_aes256decrypt_dolbeau_std_4ft_INPUTBYTES
|
|
#define crypto_core_aes256decrypt_KEYBYTES crypto_core_aes256decrypt_dolbeau_std_4ft_KEYBYTES
|
|
#define crypto_core_aes256decrypt_CONSTBYTES crypto_core_aes256decrypt_dolbeau_std_4ft_CONSTBYTES
|
|
#define crypto_core_aes256decrypt_IMPLEMENTATION "crypto_core/aes256decrypt/dolbeau/std-4ft"
|
|
#ifndef crypto_core_aes256decrypt_dolbeau_std_4ft_VERSION
|
|
#define crypto_core_aes256decrypt_dolbeau_std_4ft_VERSION "-"
|
|
#endif
|
|
#define crypto_core_aes256decrypt_VERSION crypto_core_aes256decrypt_dolbeau_std_4ft_VERSION
|
|
|
|
#endif
|