Latest update.

This commit is contained in:
2019-10-17 23:54:38 +09:00
parent 41a23ae6f6
commit ee84d0dd84
1357 changed files with 41111 additions and 9603 deletions
+6 -2
View File
@@ -52,10 +52,14 @@ $COMMON=cbc128.c ctr128.c cfb128.c ofb128.c gcm128.c ccm128.c xts128.c \
wrap128.c $MODESASM
SOURCE[../../libcrypto]=$COMMON \
cts128.c ocb128.c siv128.c
SOURCE[../../providers/libfips.a]=$COMMON
# Implementations are now spread across several libraries, so the defines
# need to be applied to all affected libraries and modules.
DEFINE[../../libcrypto]=$MODESDEF
SOURCE[../../providers/fips]=$COMMON
DEFINE[../../providers/fips]=$MODESDEF
DEFINE[../../providers/libfips.a]=$MODESDEF
DEFINE[../../providers/libimplementations.a]=$MODESDEF
INCLUDE[gcm128.o]=..
+1 -1
View File
@@ -9,7 +9,7 @@
#include <string.h>
#include <openssl/crypto.h>
#include "internal/modes_int.h"
#include "crypto/modes.h"
#if !defined(STRICT_ALIGNMENT) && !defined(PEDANTIC)
# define STRICT_ALIGNMENT 0
+1 -1
View File
@@ -9,7 +9,7 @@
#include <string.h>
#include <openssl/crypto.h>
#include "internal/modes_int.h"
#include "crypto/modes.h"
/*
* First you setup M and L parameters and pass the key schedule. This is
+1 -1
View File
@@ -9,7 +9,7 @@
#include <string.h>
#include <openssl/crypto.h>
#include "internal/modes_int.h"
#include "crypto/modes.h"
/*
* The input and output encrypted as though 128bit cfb mode is being used.
+1 -1
View File
@@ -9,7 +9,7 @@
#include <string.h>
#include <openssl/crypto.h>
#include "internal/modes_int.h"
#include "crypto/modes.h"
/*
* NOTE: the IV/counter CTR mode is big-endian. The code itself is
+1 -1
View File
@@ -9,7 +9,7 @@
#include <string.h>
#include <openssl/crypto.h>
#include "internal/modes_int.h"
#include "crypto/modes.h"
/*
* Trouble with Ciphertext Stealing, CTS, mode is that there is no
+1 -1
View File
@@ -10,7 +10,7 @@
#include <string.h>
#include <openssl/crypto.h>
#include "internal/cryptlib.h"
#include "internal/modes_int.h"
#include "crypto/modes.h"
#if defined(BSWAP4) && defined(STRICT_ALIGNMENT)
/* redefine, because alignment is ensured */
+1 -1
View File
@@ -10,7 +10,7 @@
#include <string.h>
#include <openssl/crypto.h>
#include <openssl/err.h>
#include "internal/modes_int.h"
#include "crypto/modes.h"
#ifndef OPENSSL_NO_OCB
+1 -1
View File
@@ -9,7 +9,7 @@
#include <string.h>
#include <openssl/crypto.h>
#include "internal/modes_int.h"
#include "crypto/modes.h"
/*
* The input and output encrypted as though 128bit ofb mode is being used.
+2 -2
View File
@@ -13,8 +13,8 @@
#include <openssl/evp.h>
#include <openssl/core_names.h>
#include <openssl/params.h>
#include "internal/modes_int.h"
#include "internal/siv_int.h"
#include "crypto/modes.h"
#include "crypto/siv.h"
#ifndef OPENSSL_NO_SIV
+1 -1
View File
@@ -9,7 +9,7 @@
#include <string.h>
#include <openssl/crypto.h>
#include "internal/modes_int.h"
#include "crypto/modes.h"
int CRYPTO_xts128_encrypt(const XTS128_CONTEXT *ctx,
const unsigned char iv[16],