Skip to content

Commit e9a6b55

Browse files
author
ipl_ci
committed
Intel(R) Integrated Performance Primitives Cryptography 2021.9.0
1 parent 3c0ad55 commit e9a6b55

File tree

53 files changed

+42
-7245
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+42
-7245
lines changed

include/ippversion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
#define IPPVERSION_H__
2828

2929
#define IPP_VERSION_MAJOR 2021
30-
#define IPP_VERSION_MINOR 10
30+
#define IPP_VERSION_MINOR 9
3131
#define IPP_VERSION_UPDATE 0
3232

3333
// Major interface version
3434
#define IPP_INTERFACE_VERSION_MAJOR 11
3535
// Minor interface version
36-
#define IPP_INTERFACE_VERSION_MINOR 10
36+
#define IPP_INTERFACE_VERSION_MINOR 9
3737

3838
#define IPP_VERSION_STR STR(IPP_VERSION_MAJOR) "." STR(IPP_VERSION_MINOR) "." STR(IPP_VERSION_UPDATE) " (" STR(IPP_INTERFACE_VERSION_MAJOR) "." STR(IPP_INTERFACE_VERSION_MINOR) " )"
3939

sources/ippcp/crypto_mb/CMakeLists.txt

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,6 @@ set(CRYPTO_MB_SOURCES_DIR "${CMAKE_CURRENT_SOURCE_DIR}/src")
4646
set(MB_DYN_LIB_TARGET "crypto_mb") # Dynamic library
4747
set(MB_STATIC_LIB_TARGET "crypto_mb_s") # Static library
4848

49-
# Define public headers
50-
file(GLOB MB_PUBLIC_HEADERS "${CRYPTO_MB_INCLUDE_DIR}/crypto_mb/*.h*")
51-
# remove fips_cert.h header if fips-mode is not chosen
52-
if(NOT DEFINED MBX_FIPS_MODE)
53-
list(REMOVE_ITEM MB_PUBLIC_HEADERS "${CRYPTO_MB_INCLUDE_DIR}/crypto_mb/fips_cert.h")
54-
endif()
55-
5649
if(MB_STANDALONE)
5750
foreach( OUTPUTCONFIG ${CMAKE_CONFIGURATION_TYPES} )
5851
string( TOUPPER ${OUTPUTCONFIG} OUTPUTCONFIG )
@@ -64,6 +57,8 @@ if(MB_STANDALONE)
6457
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin")
6558
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin")
6659
else()
60+
file(GLOB MB_PUBLIC_HEADERS "${CRYPTO_MB_INCLUDE_DIR}/crypto_mb/*.h*")
61+
6762
# Make variables below accessible in parent CMakeLists.txt
6863
set(MBX_INTERFACE_VERSION ${MBX_INTERFACE_VERSION} PARENT_SCOPE)
6964
set(MB_PUBLIC_HEADERS ${MB_PUBLIC_HEADERS} PARENT_SCOPE)

sources/ippcp/crypto_mb/include/crypto_mb/ec_nistp256.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ EXTERN_C mbx_status mbx_nistp256_ecdsa_sign_setup_mb8(int64u* pa_inv_eph_skey[8]
103103
/*
104104
// computes ECDSA signature
105105
//
106-
// pa_sign_r[] array of pointers to the r-components of the signatures
107-
// pa_sign_s[] array of pointers to the s-components of the signatures
106+
// pa_sign_pr[] array of pointers to the r-components of the signatures
107+
// pa_sign_ps[] array of pointers to the s-components of the signatures
108108
// pa_msg[] array of pointers to the messages are being signed
109-
// pa_sgn_rp[] array of pointers to the pre-computed r-components of the signatures
109+
// pa_sign_rp[] array of pointers to the pre-computed r-components of the signatures
110110
// pa_inv_eph_skey[] array of pointers to the inversion of signer's ephemeral private keys
111111
// pa_reg_skey[] array of pointers to the regular signer's ephemeral private keys
112112
// pBuffer pointer to the scratch buffer

sources/ippcp/crypto_mb/include/crypto_mb/ec_nistp384.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ EXTERN_C mbx_status mbx_nistp384_ecdsa_sign_setup_mb8(int64u* pa_inv_eph_skey[8]
103103
/*
104104
// computes ECDSA signature
105105
//
106-
// pa_sign_r[] array of pointers to the r-components of the signatures
107-
// pa_sign_s[] array of pointers to the s-components of the signatures
106+
// pa_sign_pr[] array of pointers to the r-components of the signatures
107+
// pa_sign_ps[] array of pointers to the s-components of the signatures
108108
// pa_msg[] array of pointers to the messages are being signed
109-
// pa_sgn_rp[] array of pointers to the pre-computed r-components of the signatures
109+
// pa_sign_rp[] array of pointers to the pre-computed r-components of the signatures
110110
// pa_inv_eph_skey[] array of pointers to the inversion of signer's ephemeral private keys
111111
// pa_reg_skey[] array of pointers to the regular signer's ephemeral private keys
112112
// pBuffer pointer to the scratch buffer

sources/ippcp/crypto_mb/include/crypto_mb/ec_nistp521.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ EXTERN_C mbx_status mbx_nistp521_ecdsa_sign_setup_mb8(int64u* pa_inv_eph_skey[8]
103103
/*
104104
// computes ECDSA signature
105105
//
106-
// pa_sign_r[] array of pointers to the r-components of the signatures
107-
// pa_sign_s[] array of pointers to the s-components of the signatures
106+
// pa_sign_pr[] array of pointers to the r-components of the signatures
107+
// pa_sign_ps[] array of pointers to the s-components of the signatures
108108
// pa_msg[] array of pointers to the messages are being signed
109-
// pa_sgn_rp[] array of pointers to the pre-computed r-components of the signatures
109+
// pa_sign_rp[] array of pointers to the pre-computed r-components of the signatures
110110
// pa_inv_eph_skey[] array of pointers to the inversion of signer's ephemeral private keys
111111
// pa_reg_skey[] array of pointers to the regular signer's ephemeral private keys
112112
// pBuffer pointer to the scratch buffer

sources/ippcp/crypto_mb/include/crypto_mb/fips_cert.h

Lines changed: 0 additions & 259 deletions
This file was deleted.

sources/ippcp/crypto_mb/include/crypto_mb/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
#define MBX_LIB_NAME() "crypto_mb"
2424
#define MBX_VER_MAJOR 1
2525
#define MBX_VER_MINOR 0
26-
#define MBX_VER_REV 10
26+
#define MBX_VER_REV 9
2727

2828
/* major interface version */
2929
#define MBX_INTERFACE_VERSION_MAJOR 11
3030
/* minor interface version */
31-
#define MBX_INTERFACE_VERSION_MINOR 10
31+
#define MBX_INTERFACE_VERSION_MINOR 9
3232

3333
typedef struct {
3434
int major; /* e.g. 1 */

0 commit comments

Comments
 (0)