2016-05-18 02:24:46 +08:00
|
|
|
/*
|
2021-06-17 20:24:59 +08:00
|
|
|
* Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
|
2015-01-22 11:40:55 +08:00
|
|
|
*
|
2018-12-06 20:40:06 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:24:46 +08: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
|
1998-12-21 18:52:47 +08:00
|
|
|
*/
|
|
|
|
|
2020-01-13 11:02:45 +08:00
|
|
|
/*
|
|
|
|
* IDEA low level APIs are deprecated for public use, but still ok for internal
|
|
|
|
* use where we're using them to implement the higher level EVP interface, as is
|
|
|
|
* the case here.
|
|
|
|
*/
|
|
|
|
#include "internal/deprecated.h"
|
|
|
|
|
1998-12-21 18:52:47 +08:00
|
|
|
#include <stdio.h>
|
2015-05-14 22:56:48 +08:00
|
|
|
#include "internal/cryptlib.h"
|
2003-03-21 07:28:55 +08:00
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_IDEA
|
2015-01-22 11:40:55 +08:00
|
|
|
# include <openssl/evp.h>
|
|
|
|
# include <openssl/objects.h>
|
2019-09-28 06:45:33 +08:00
|
|
|
# include "crypto/evp.h"
|
2015-01-22 11:40:55 +08:00
|
|
|
# include <openssl/idea.h>
|
2020-07-03 05:12:33 +08:00
|
|
|
# include "evp_local.h"
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2016-04-18 19:43:54 +08:00
|
|
|
/* Can't use IMPLEMENT_BLOCK_CIPHER because IDEA_ecb_encrypt is different */
|
2015-12-19 00:01:28 +08:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
IDEA_KEY_SCHEDULE ks;
|
|
|
|
} EVP_IDEA_KEY;
|
|
|
|
|
2000-06-03 22:13:58 +08:00
|
|
|
static int idea_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
|
2015-01-22 11:40:55 +08:00
|
|
|
const unsigned char *iv, int enc);
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
/*
|
2016-04-18 19:43:54 +08:00
|
|
|
* NB IDEA_ecb_encrypt doesn't take an 'encrypt' argument so we treat it as a
|
2015-01-22 11:40:55 +08:00
|
|
|
* special case
|
2000-05-30 10:10:57 +08:00
|
|
|
*/
|
|
|
|
|
2000-06-03 22:13:58 +08:00
|
|
|
static int idea_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
|
2015-01-22 11:40:55 +08:00
|
|
|
const unsigned char *in, size_t inl)
|
2000-05-30 10:10:57 +08:00
|
|
|
{
|
2015-01-22 11:40:55 +08:00
|
|
|
BLOCK_CIPHER_ecb_loop()
|
2021-10-26 15:16:18 +08:00
|
|
|
IDEA_ecb_encrypt(in + i, out + i, &EVP_C_DATA(EVP_IDEA_KEY, ctx)->ks);
|
2015-01-22 11:40:55 +08:00
|
|
|
return 1;
|
2000-05-30 10:10:57 +08:00
|
|
|
}
|
|
|
|
|
2016-04-21 02:38:35 +08:00
|
|
|
BLOCK_CIPHER_func_cbc(idea, IDEA, EVP_IDEA_KEY, ks)
|
|
|
|
BLOCK_CIPHER_func_ofb(idea, IDEA, 64, EVP_IDEA_KEY, ks)
|
|
|
|
BLOCK_CIPHER_func_cfb(idea, IDEA, 64, EVP_IDEA_KEY, ks)
|
2000-05-30 10:10:57 +08:00
|
|
|
|
2016-04-18 19:43:54 +08:00
|
|
|
BLOCK_CIPHER_defs(idea, IDEA_KEY_SCHEDULE, NID_idea, 8, 16, 8, 64,
|
2015-01-22 11:40:55 +08:00
|
|
|
0, idea_init_key, NULL,
|
|
|
|
EVP_CIPHER_set_asn1_iv, EVP_CIPHER_get_asn1_iv, NULL)
|
2000-05-30 10:10:57 +08:00
|
|
|
|
2000-06-03 22:13:58 +08:00
|
|
|
static int idea_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
|
2015-01-22 11:40:55 +08:00
|
|
|
const unsigned char *iv, int enc)
|
|
|
|
{
|
|
|
|
if (!enc) {
|
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
|
|
|
if (EVP_CIPHER_CTX_get_mode(ctx) == EVP_CIPH_OFB_MODE)
|
2015-01-22 11:40:55 +08:00
|
|
|
enc = 1;
|
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
|
|
|
else if (EVP_CIPHER_CTX_get_mode(ctx) == EVP_CIPH_CFB_MODE)
|
2015-01-22 11:40:55 +08:00
|
|
|
enc = 1;
|
|
|
|
}
|
|
|
|
if (enc)
|
2021-10-26 15:16:18 +08:00
|
|
|
IDEA_set_encrypt_key(key, &EVP_C_DATA(EVP_IDEA_KEY, ctx)->ks);
|
2015-01-22 11:40:55 +08:00
|
|
|
else {
|
|
|
|
IDEA_KEY_SCHEDULE tmp;
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2016-04-18 19:43:54 +08:00
|
|
|
IDEA_set_encrypt_key(key, &tmp);
|
2021-10-26 15:16:18 +08:00
|
|
|
IDEA_set_decrypt_key(&tmp, &EVP_C_DATA(EVP_IDEA_KEY, ctx)->ks);
|
2015-01-22 11:40:55 +08:00
|
|
|
OPENSSL_cleanse((unsigned char *)&tmp, sizeof(IDEA_KEY_SCHEDULE));
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
|
|
|
#endif
|