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 <assert.h>
|
2002-11-13 14:01:34 +00:00
|
|
|
|
2002-01-02 16:55:35 +00:00
|
|
|
#include <openssl/aes.h>
|
|
|
|
#include "aes_locl.h"
|
|
|
|
|
|
|
|
void AES_ecb_encrypt(const unsigned char *in, unsigned char *out,
|
2015-01-22 03:40:55 +00:00
|
|
|
const AES_KEY *key, const int enc)
|
|
|
|
{
|
2002-01-02 16:55:35 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
assert(in && out && key);
|
|
|
|
assert((AES_ENCRYPT == enc) || (AES_DECRYPT == enc));
|
2002-01-02 16:55:35 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (AES_ENCRYPT == enc)
|
|
|
|
AES_encrypt(in, out, key);
|
|
|
|
else
|
|
|
|
AES_decrypt(in, out, key);
|
2002-01-02 16:55:35 +00:00
|
|
|
}
|