2016-05-17 19:38:09 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2002-02-16 12:20:34 +00:00
|
|
|
*
|
2018-12-06 12:16:23 +00:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-17 19:38:09 +00:00
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2002-02-16 12:20:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <openssl/aes.h>
|
2008-12-23 11:33:01 +00:00
|
|
|
#include <openssl/modes.h>
|
2006-05-30 07:20:13 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
/*
|
|
|
|
* The input and output encrypted as though 128bit cfb mode is being used.
|
|
|
|
* The extra state information to record how much of the 128bit block we have
|
|
|
|
* used is contained in *num;
|
2002-02-16 12:20:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
void AES_cfb128_encrypt(const unsigned char *in, unsigned char *out,
|
2015-01-22 03:40:55 +00:00
|
|
|
size_t length, const AES_KEY *key,
|
|
|
|
unsigned char *ivec, int *num, const int enc)
|
|
|
|
{
|
2002-02-16 12:20:34 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc,
|
|
|
|
(block128_f) AES_encrypt);
|
2002-02-16 12:20:34 +00:00
|
|
|
}
|
|
|
|
|
2004-01-28 19:05:35 +00:00
|
|
|
/* N.B. This expects the input to be packed, MS bit first */
|
|
|
|
void AES_cfb1_encrypt(const unsigned char *in, unsigned char *out,
|
2015-01-22 03:40:55 +00:00
|
|
|
size_t length, const AES_KEY *key,
|
|
|
|
unsigned char *ivec, int *num, const int enc)
|
|
|
|
{
|
|
|
|
CRYPTO_cfb128_1_encrypt(in, out, length, key, ivec, num, enc,
|
|
|
|
(block128_f) AES_encrypt);
|
|
|
|
}
|
2004-01-28 19:05:35 +00:00
|
|
|
|
|
|
|
void AES_cfb8_encrypt(const unsigned char *in, unsigned char *out,
|
2015-01-22 03:40:55 +00:00
|
|
|
size_t length, const AES_KEY *key,
|
|
|
|
unsigned char *ivec, int *num, const int enc)
|
|
|
|
{
|
|
|
|
CRYPTO_cfb128_8_encrypt(in, out, length, key, ivec, num, enc,
|
|
|
|
(block128_f) AES_encrypt);
|
|
|
|
}
|