2016-05-17 19:38:09 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2002-01-02 16:55:35 +00:00
|
|
|
*
|
2016-05-17 19:38:09 +00:00
|
|
|
* Licensed under the OpenSSL license (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
|
2002-01-02 16:55:35 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <openssl/opensslv.h>
|
|
|
|
#include <openssl/aes.h>
|
|
|
|
#include "aes_locl.h"
|
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
const char *AES_options(void)
|
|
|
|
{
|
2002-01-02 16:55:35 +00:00
|
|
|
#ifdef FULL_UNROLL
|
2015-01-22 03:40:55 +00:00
|
|
|
return "aes(full)";
|
|
|
|
#else
|
|
|
|
return "aes(partial)";
|
2002-01-02 16:55:35 +00:00
|
|
|
#endif
|
|
|
|
}
|