Skip to content

Commit 5a77835

Browse files
author
ipl_ci
committed
Intel(R) Cryptography Primitives Library 1.1.0
1 parent 61ed84d commit 5a77835

File tree

8 files changed

+33
-22
lines changed

8 files changed

+33
-22
lines changed

include/ippcpversion.h

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

2929
#define CRYPTO_LIB_VERSION_MAJOR 1
30-
#define CRYPTO_LIB_VERSION_MINOR 2
30+
#define CRYPTO_LIB_VERSION_MINOR 1
3131
#define CRYPTO_LIB_VERSION_PATCH 0
3232

3333
// Major interface version
3434
#define CRYPTO_LIB_INTERFACE_VERSION_MAJOR 12
3535
// Minor interface version
36-
#define CRYPTO_LIB_INTERFACE_VERSION_MINOR 2
36+
#define CRYPTO_LIB_INTERFACE_VERSION_MINOR 1
3737

3838
#define CRYPTO_LIB_VERSION_STR STR(CRYPTO_LIB_VERSION_MAJOR) "." STR(CRYPTO_LIB_VERSION_MINOR) "." STR(CRYPTO_LIB_VERSION_PATCH) \
3939
" (" STR(CRYPTO_LIB_INTERFACE_VERSION_MAJOR) "." STR(CRYPTO_LIB_INTERFACE_VERSION_MINOR) ")"

include/ippversion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@
3232
#define IPPVERSION_H__
3333

3434
#define IPP_VERSION_MAJOR 1
35-
#define IPP_VERSION_MINOR 2
35+
#define IPP_VERSION_MINOR 1
3636
#define IPP_VERSION_UPDATE 0
3737

3838
// Major interface version
3939
#define IPP_INTERFACE_VERSION_MAJOR 12
4040
// Minor interface version
41-
#define IPP_INTERFACE_VERSION_MINOR 2
41+
#define IPP_INTERFACE_VERSION_MINOR 1
4242

4343
#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) " )"
4444

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
/* crypto_mb name & version */
2323
#define MBX_LIB_NAME() "crypto_mb"
2424
#define MBX_VER_MAJOR 1
25-
#define MBX_VER_MINOR 2
25+
#define MBX_VER_MINOR 1
2626
#define MBX_VER_PATCH 0
2727

2828
/* major interface version */
2929
#define MBX_INTERFACE_VERSION_MAJOR 12
3030
/* minor interface version */
31-
#define MBX_INTERFACE_VERSION_MINOR 2
31+
#define MBX_INTERFACE_VERSION_MINOR 1
3232

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

sources/ippcp/hash/md5/pcpmd5stuff.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@
1414
* limitations under the License.
1515
*************************************************************************/
1616

17-
/*
18-
//
17+
/*
18+
//
1919
// Purpose:
2020
// Cryptography Primitive.
2121
// Digesting message according to MD5
2222
// (derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm)
23-
//
23+
//
2424
// Equivalent code is available from RFC 1321.
25-
//
25+
//
2626
// Contents:
27-
// MD5 methods and constants
28-
//
27+
// MD4 methods and constants
28+
//
2929
*/
3030

3131
#include "owndefs.h"

sources/ippcp/hash/sha1/pcpsha1stuff.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
* limitations under the License.
1515
*************************************************************************/
1616

17-
/*
18-
//
17+
/*
18+
//
1919
// Purpose:
2020
// Cryptography Primitive.
2121
// Digesting message according to SHA1
22-
//
22+
//
2323
// Contents:
24-
// SHA1 methods and constants
24+
// SHA1 stuff
2525
//
2626
*/
2727

sources/ippcp/hash/sha256/pcpsha256stuff.h

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,16 @@
2121
// Digesting message according to SHA256
2222
//
2323
// Contents:
24-
// SHA256 methods and constants
24+
// ippsSHA256GetSize()
25+
// ippsSHA256Init()
26+
// ippsSHA256Pack()
27+
// ippsSHA256Unpack()
28+
// ippsSHA256Duplicate()
29+
// ippsSHA256Update()
30+
// ippsSHA256GetTag()
31+
// ippsSHA256Final()
32+
// ippsSHA256MessageDigest()
33+
//
2534
//
2635
*/
2736

sources/ippcp/hash/sha512/pcpsha512stuff.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
// SHA512 message digest
2222
//
2323
// Contents:
24-
// SHA512 methods and constants
24+
// SHA512 stuff
25+
//
2526
//
2627
*/
2728

sources/ippcp/hash/sm3/pcpsm3stuff.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,16 @@
1414
* limitations under the License.
1515
*************************************************************************/
1616

17-
/*
18-
//
17+
/*
18+
//
1919
// Purpose:
2020
// Cryptography Primitive.
2121
// Digesting message according to SM3
22-
//
22+
//
2323
// Contents:
2424
// SM3 methods and constants
25-
//
25+
//
26+
//
2627
*/
2728

2829
#include "owndefs.h"

0 commit comments

Comments
 (0)