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-06-05 10:40:54 +00:00
|
|
|
|
2002-02-16 12:20:34 +00:00
|
|
|
void AES_ofb128_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)
|
2008-12-23 11:33:01 +00:00
|
|
|
{
|
2015-01-22 03:40:55 +00:00
|
|
|
CRYPTO_ofb128_encrypt(in, out, length, key, ivec, num,
|
|
|
|
(block128_f) AES_encrypt);
|
2002-02-16 12:20:34 +00:00
|
|
|
}
|