diff options
Diffstat (limited to 'crypto/aes/aes_ofb.c')
-rw-r--r-- | crypto/aes/aes_ofb.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/crypto/aes/aes_ofb.c b/crypto/aes/aes_ofb.c index 215b53858eb6..58e47dc45e73 100644 --- a/crypto/aes/aes_ofb.c +++ b/crypto/aes/aes_ofb.c @@ -1,12 +1,18 @@ /* - * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved. * - * Licensed under the OpenSSL license (the "License"). You may not use + * Licensed under the Apache License 2.0 (the "License"). You may not use * 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 */ +/* + * AES_encrypt is deprecated - but we need to use it to implement + * AES_ofb128_encrypt + */ +#include "internal/deprecated.h" + #include <openssl/aes.h> #include <openssl/modes.h> |