File tree Expand file tree Collapse file tree 8 files changed +33
-22
lines changed
crypto_mb/include/crypto_mb Expand file tree Collapse file tree 8 files changed +33
-22
lines changed Original file line number Diff line number Diff line change 27
27
#define CRYPTOLIBVERSION_H__
28
28
29
29
#define CRYPTO_LIB_VERSION_MAJOR 1
30
- #define CRYPTO_LIB_VERSION_MINOR 2
30
+ #define CRYPTO_LIB_VERSION_MINOR 1
31
31
#define CRYPTO_LIB_VERSION_PATCH 0
32
32
33
33
// Major interface version
34
34
#define CRYPTO_LIB_INTERFACE_VERSION_MAJOR 12
35
35
// Minor interface version
36
- #define CRYPTO_LIB_INTERFACE_VERSION_MINOR 2
36
+ #define CRYPTO_LIB_INTERFACE_VERSION_MINOR 1
37
37
38
38
#define CRYPTO_LIB_VERSION_STR STR(CRYPTO_LIB_VERSION_MAJOR) "." STR(CRYPTO_LIB_VERSION_MINOR) "." STR(CRYPTO_LIB_VERSION_PATCH) \
39
39
" (" STR(CRYPTO_LIB_INTERFACE_VERSION_MAJOR) "." STR(CRYPTO_LIB_INTERFACE_VERSION_MINOR) ")"
Original file line number Diff line number Diff line change 32
32
#define IPPVERSION_H__
33
33
34
34
#define IPP_VERSION_MAJOR 1
35
- #define IPP_VERSION_MINOR 2
35
+ #define IPP_VERSION_MINOR 1
36
36
#define IPP_VERSION_UPDATE 0
37
37
38
38
// Major interface version
39
39
#define IPP_INTERFACE_VERSION_MAJOR 12
40
40
// Minor interface version
41
- #define IPP_INTERFACE_VERSION_MINOR 2
41
+ #define IPP_INTERFACE_VERSION_MINOR 1
42
42
43
43
#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) " )"
44
44
Original file line number Diff line number Diff line change 22
22
/* crypto_mb name & version */
23
23
#define MBX_LIB_NAME () "crypto_mb"
24
24
#define MBX_VER_MAJOR 1
25
- #define MBX_VER_MINOR 2
25
+ #define MBX_VER_MINOR 1
26
26
#define MBX_VER_PATCH 0
27
27
28
28
/* major interface version */
29
29
#define MBX_INTERFACE_VERSION_MAJOR 12
30
30
/* minor interface version */
31
- #define MBX_INTERFACE_VERSION_MINOR 2
31
+ #define MBX_INTERFACE_VERSION_MINOR 1
32
32
33
33
typedef struct {
34
34
int major ; /* e.g. 1 */
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*************************************************************************/
16
16
17
- /*
18
- //
17
+ /*
18
+ //
19
19
// Purpose:
20
20
// Cryptography Primitive.
21
21
// Digesting message according to MD5
22
22
// (derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm)
23
- //
23
+ //
24
24
// Equivalent code is available from RFC 1321.
25
- //
25
+ //
26
26
// Contents:
27
- // MD5 methods and constants
28
- //
27
+ // MD4 methods and constants
28
+ //
29
29
*/
30
30
31
31
#include "owndefs.h"
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*************************************************************************/
16
16
17
- /*
18
- //
17
+ /*
18
+ //
19
19
// Purpose:
20
20
// Cryptography Primitive.
21
21
// Digesting message according to SHA1
22
- //
22
+ //
23
23
// Contents:
24
- // SHA1 methods and constants
24
+ // SHA1 stuff
25
25
//
26
26
*/
27
27
Original file line number Diff line number Diff line change 21
21
// Digesting message according to SHA256
22
22
//
23
23
// 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
+ //
25
34
//
26
35
*/
27
36
Original file line number Diff line number Diff line change 21
21
// SHA512 message digest
22
22
//
23
23
// Contents:
24
- // SHA512 methods and constants
24
+ // SHA512 stuff
25
+ //
25
26
//
26
27
*/
27
28
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*************************************************************************/
16
16
17
- /*
18
- //
17
+ /*
18
+ //
19
19
// Purpose:
20
20
// Cryptography Primitive.
21
21
// Digesting message according to SM3
22
- //
22
+ //
23
23
// Contents:
24
24
// SM3 methods and constants
25
- //
25
+ //
26
+ //
26
27
*/
27
28
28
29
#include "owndefs.h"
You can’t perform that action at this time.
0 commit comments