Bitcoin Core 28.99.0
P2P Digital Currency
ctaes.h
Go to the documentation of this file.
1 /*********************************************************************
2 * Copyright (c) 2016 Pieter Wuille *
3 * Distributed under the MIT software license, see the accompanying *
4 * file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5 **********************************************************************/
6
7#ifndef _CTAES_H_
8#define _CTAES_H_ 1
9
10#include <stdint.h>
11#include <stdlib.h>
12
13typedef struct {
14 uint16_t slice[8];
15} AES_state;
16
17typedef struct {
18 AES_state rk[11];
20
21typedef struct {
22 AES_state rk[13];
24
25typedef struct {
26 AES_state rk[15];
28
29void AES128_init(AES128_ctx* ctx, const unsigned char* key16);
30void AES128_encrypt(const AES128_ctx* ctx, size_t blocks, unsigned char* cipher16, const unsigned char* plain16);
31void AES128_decrypt(const AES128_ctx* ctx, size_t blocks, unsigned char* plain16, const unsigned char* cipher16);
32
33void AES192_init(AES192_ctx* ctx, const unsigned char* key24);
34void AES192_encrypt(const AES192_ctx* ctx, size_t blocks, unsigned char* cipher16, const unsigned char* plain16);
35void AES192_decrypt(const AES192_ctx* ctx, size_t blocks, unsigned char* plain16, const unsigned char* cipher16);
36
37void AES256_init(AES256_ctx* ctx, const unsigned char* key32);
38void AES256_encrypt(const AES256_ctx* ctx, size_t blocks, unsigned char* cipher16, const unsigned char* plain16);
39void AES256_decrypt(const AES256_ctx* ctx, size_t blocks, unsigned char* plain16, const unsigned char* cipher16);
40
41#endif
void AES128_encrypt(const AES128_ctx *ctx, size_t blocks, unsigned char *cipher16, const unsigned char *plain16)
Definition: ctaes.c:501
void AES256_encrypt(const AES256_ctx *ctx, size_t blocks, unsigned char *cipher16, const unsigned char *plain16)
Definition: ctaes.c:542
void AES192_decrypt(const AES192_ctx *ctx, size_t blocks, unsigned char *plain16, const unsigned char *cipher16)
Definition: ctaes.c:530
void AES256_init(AES256_ctx *ctx, const unsigned char *key32)
Definition: ctaes.c:538
void AES256_decrypt(const AES256_ctx *ctx, size_t blocks, unsigned char *plain16, const unsigned char *cipher16)
Definition: ctaes.c:550
void AES192_encrypt(const AES192_ctx *ctx, size_t blocks, unsigned char *cipher16, const unsigned char *plain16)
Definition: ctaes.c:521
void AES128_decrypt(const AES128_ctx *ctx, size_t blocks, unsigned char *plain16, const unsigned char *cipher16)
Definition: ctaes.c:509
void AES128_init(AES128_ctx *ctx, const unsigned char *key16)
Definition: ctaes.c:497
void AES192_init(AES192_ctx *ctx, const unsigned char *key24)
Definition: ctaes.c:517