2016-05-18 02:51:34 +08:00
|
|
|
/*
|
2020-04-23 20:55:52 +08:00
|
|
|
* Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2015-01-22 11:40:55 +08:00
|
|
|
*
|
2018-12-06 20:41:33 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:51:34 +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"
|
|
|
|
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/idea.h>
|
2019-09-28 06:45:40 +08:00
|
|
|
#include "idea_local.h"
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
/*
|
|
|
|
* The input and output encrypted as though 64bit ofb mode is being used.
|
|
|
|
* The extra state information to record how much of the 64bit block we have
|
|
|
|
* used is contained in *num;
|
1998-12-21 18:52:47 +08:00
|
|
|
*/
|
2016-04-18 19:43:54 +08:00
|
|
|
void IDEA_ofb64_encrypt(const unsigned char *in, unsigned char *out,
|
2015-01-22 11:40:55 +08:00
|
|
|
long length, IDEA_KEY_SCHEDULE *schedule,
|
|
|
|
unsigned char *ivec, int *num)
|
|
|
|
{
|
|
|
|
register unsigned long v0, v1, t;
|
|
|
|
register int n = *num;
|
|
|
|
register long l = length;
|
|
|
|
unsigned char d[8];
|
|
|
|
register char *dp;
|
|
|
|
unsigned long ti[2];
|
|
|
|
unsigned char *iv;
|
|
|
|
int save = 0;
|
1998-12-21 18:52:47 +08:00
|
|
|
|
enc: fix coverity 1451499, 1451501, 1451506, 1451507, 1351511, 1451514, 1451517, 1451523, 1451526m 1451528, 1451539, 1451441, 1451549, 1451568 & 1451572: improper use of negative value
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14638)
2021-03-22 10:09:19 +08:00
|
|
|
if (n < 0) {
|
|
|
|
*num = -1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
iv = (unsigned char *)ivec;
|
|
|
|
n2l(iv, v0);
|
|
|
|
n2l(iv, v1);
|
|
|
|
ti[0] = v0;
|
|
|
|
ti[1] = v1;
|
|
|
|
dp = (char *)d;
|
|
|
|
l2n(v0, dp);
|
|
|
|
l2n(v1, dp);
|
|
|
|
while (l--) {
|
|
|
|
if (n == 0) {
|
2016-04-18 19:43:54 +08:00
|
|
|
IDEA_encrypt((unsigned long *)ti, schedule);
|
2015-01-22 11:40:55 +08:00
|
|
|
dp = (char *)d;
|
|
|
|
t = ti[0];
|
|
|
|
l2n(t, dp);
|
|
|
|
t = ti[1];
|
|
|
|
l2n(t, dp);
|
|
|
|
save++;
|
|
|
|
}
|
|
|
|
*(out++) = *(in++) ^ d[n];
|
|
|
|
n = (n + 1) & 0x07;
|
|
|
|
}
|
|
|
|
if (save) {
|
|
|
|
v0 = ti[0];
|
|
|
|
v1 = ti[1];
|
|
|
|
iv = (unsigned char *)ivec;
|
|
|
|
l2n(v0, iv);
|
|
|
|
l2n(v1, iv);
|
|
|
|
}
|
|
|
|
t = v0 = v1 = ti[0] = ti[1] = 0;
|
|
|
|
*num = n;
|
|
|
|
}
|