2016-05-18 03:38:09 +08:00
|
|
|
/*
|
2020-04-23 20:55:52 +08:00
|
|
|
* Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2002-02-16 20:20:34 +08:00
|
|
|
*
|
2018-12-06 20:16:23 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 03:38:09 +08: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 20:20:34 +08:00
|
|
|
*/
|
|
|
|
|
2019-12-06 01:09:49 +08:00
|
|
|
/*
|
|
|
|
* AES_encrypt is deprecated - but we need to use it to implement
|
|
|
|
* AES_ofb128_encrypt
|
|
|
|
*/
|
|
|
|
#include "internal/deprecated.h"
|
|
|
|
|
2002-02-16 20:20:34 +08:00
|
|
|
#include <openssl/aes.h>
|
2008-12-23 19:33:01 +08:00
|
|
|
#include <openssl/modes.h>
|
2006-06-05 18:40:54 +08:00
|
|
|
|
2002-02-16 20:20:34 +08:00
|
|
|
void AES_ofb128_encrypt(const unsigned char *in, unsigned char *out,
|
2015-01-22 11:40:55 +08:00
|
|
|
size_t length, const AES_KEY *key,
|
|
|
|
unsigned char *ivec, int *num)
|
2008-12-23 19:33:01 +08:00
|
|
|
{
|
2015-01-22 11:40:55 +08:00
|
|
|
CRYPTO_ofb128_encrypt(in, out, length, key, ivec, num,
|
|
|
|
(block128_f) AES_encrypt);
|
2002-02-16 20:20:34 +08:00
|
|
|
}
|