2016-05-17 14:52:22 -04:00
|
|
|
/*
|
2020-04-23 13:55:52 +01:00
|
|
|
* Copyright 2007-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2007-04-23 23:48:59 +00:00
|
|
|
*
|
2018-12-06 13:54:23 +01:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-17 14:52:22 -04: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
|
2007-04-23 23:48:59 +00:00
|
|
|
*/
|
|
|
|
|
2020-01-14 08:35:12 +10:00
|
|
|
/*
|
|
|
|
* SEED low level APIs are deprecated for public use, but still ok for
|
|
|
|
* internal use.
|
|
|
|
*/
|
|
|
|
#include "internal/deprecated.h"
|
|
|
|
|
2007-04-23 23:48:59 +00:00
|
|
|
#include <openssl/seed.h>
|
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
void SEED_ecb_encrypt(const unsigned char *in, unsigned char *out,
|
|
|
|
const SEED_KEY_SCHEDULE *ks, int enc)
|
|
|
|
{
|
|
|
|
if (enc)
|
|
|
|
SEED_encrypt(in, out, ks);
|
|
|
|
else
|
|
|
|
SEED_decrypt(in, out, ks);
|
|
|
|
}
|