Update rand_bytes()

This commit is contained in:
Zhi Guan
2022-12-22 17:08:50 +08:00
parent 950ef49fb6
commit 9ce7a54649
6 changed files with 60 additions and 76 deletions

View File

@@ -8,8 +8,6 @@ option(BUILD_SHARED_LIBS "Build using shared libraries" OFF)
include_directories(include) include_directories(include)
set(src set(src
src/version.c src/version.c
src/debug.c src/debug.c
@@ -76,62 +74,63 @@ set(src
) )
option(ENABLE_SM3_AVX_BMI2 "Enable SM3 AVX+BMI2 assembly implementation" OFF) option(ENABLE_SM3_AVX_BMI2 "Enable SM3 AVX+BMI2 assembly implementation" OFF)
if (ENABLE_SM3_AVX_BMI2) if (ENABLE_SM3_AVX_BMI2)
enable_language(ASM) enable_language(ASM)
list(APPEND src src/sm3_avx_bmi2.s) list(APPEND src src/sm3_avx_bmi2.s)
endif() endif()
option(ENABLE_SM4_AESNI_AVX "Enable SM4 AESNI+AVX assembly implementation" OFF)
option(ENABLE_SM4_AESNI_AVX "Enable SM4 AESNI+AVX assembly implementation" OFF)
if (ENABLE_SM4_AESNI_AVX) if (ENABLE_SM4_AESNI_AVX)
list(APPEND src src/sm4_aesni_avx.c) list(APPEND src src/sm4_aesni_avx.c)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=native") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=native")
endif() endif()
if (WIN32)
list(APPEND src src/u_time.c)
list(APPEND src src/rand_win.c)
else()
list(APPEND src src/rand.c)
endif()
option(ENABLE_BROKEN_CRYPTO "Enable broken crypto algorithms" OFF)
set(broken_crypto_src set(broken_crypto_src
src/des.c src/des.c
src/sha1.c src/sha1.c
src/md5.c src/md5.c
src/rc4.c src/rc4.c
) )
option(ENABLE_BROKEN_CRYPTO "Enable broken crypto algorithms" OFF)
if (ENABLE_BROKEN_CRYPTO) if (ENABLE_BROKEN_CRYPTO)
list(APPEND src ${broken_crypto_src}) list(APPEND src ${broken_crypto_src})
endif() endif()
option(ENABLE_RDRND "Enable Intel RDRND instructions" OFF) option(ENABLE_RDRND "Enable Intel RDRND instructions" OFF)
if (${CMAKE_SYSTEM_PROCESSOR} MATCHES x86_64) if (${CMAKE_SYSTEM_PROCESSOR} MATCHES x86_64)
set(ENABLE_RDRND ON) set(ENABLE_RDRND ON)
endif() endif()
if (ENABLE_RDRND) if (ENABLE_RDRND)
list(APPEND src src/rdrand.c) list(APPEND src src/rdrand.c)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mrdrnd -mrdseed") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mrdrnd -mrdseed")
endif() endif()
if (WIN32)
list(APPEND src src/u_time.c)
list(APPEND src src/rand_win.c)
elseif (APPLE)
list(APPEND src src/rand_apple.c)
else()
list(APPEND src src/rand_unix.c)
endif()
add_library(gmssl ${src})
if (WIN32) if (WIN32)
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON) set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
add_library(gmssl ${src}) elseif (APPLE)
target_link_libraries(gmssl dl)
target_link_libraries(gmssl "-framework Security")
#target_link_libraries(gmssl "-framework CoreFoundation") # rand_apple.c CFRelease()
elseif (MINGW)
target_link_libraries(gmssl PRIVATE wsock32)
else() else()
add_library(gmssl ${src})
target_link_libraries(gmssl dl) target_link_libraries(gmssl dl)
endif() endif()
if(MINGW)
target_link_libraries(gmssl PRIVATE wsock32)
endif()
SET_TARGET_PROPERTIES(gmssl PROPERTIES VERSION 3.0 SOVERSION 3) SET_TARGET_PROPERTIES(gmssl PROPERTIES VERSION 3.0 SOVERSION 3)

View File

@@ -28,9 +28,6 @@ Rand Public API
int rand_bytes(uint8_t *buf, size_t buflen); int rand_bytes(uint8_t *buf, size_t buflen);
int rdrand_bytes(uint8_t *buf, size_t buflen);
int rdseed_bytes(uint8_t *buf, size_t buflen);
#ifdef __cplusplus #ifdef __cplusplus
} }

30
include/gmssl/rdrand.h Normal file
View File

@@ -0,0 +1,30 @@
/*
* Copyright 2014-2022 The GmSSL Project. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the License); you may
* not use this file except in compliance with the License.
*
* http://www.apache.org/licenses/LICENSE-2.0
*/
#ifndef GMSSL_RDRAND_H
#define GMSSL_RDRAND_H
#include <stdint.h>
#include <stdlib.h>
#ifdef __cplusplus
extern "C" {
#endif
int rdrand_bytes(uint8_t *buf, size_t buflen);
int rdseed_bytes(uint8_t *buf, size_t buflen);
#ifdef __cplusplus
}
#endif
#endif

View File

@@ -1,46 +0,0 @@
/*
* Copyright 2014-2022 The GmSSL Project. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the License); you may
* not use this file except in compliance with the License.
*
* http://www.apache.org/licenses/LICENSE-2.0
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <gmssl/rand.h>
#include <gmssl/error.h>
#define RAND_MAX_BUF_SIZE 4096
int rand_bytes(uint8_t *buf, size_t len)
{
FILE *fp;
if (!buf) {
error_print();
return -1;
}
if (len > RAND_MAX_BUF_SIZE) {
error_print();
return -1;
}
if (!len) {
return 0;
}
if (!(fp = fopen("/dev/urandom", "rb"))) {
error_print();
return -1;
}
if (fread(buf, 1, len, fp) != len) {
error_print();
fclose(fp);
return -1;
}
fclose(fp);
return 1;
}

View File

@@ -20,12 +20,15 @@ int rand_bytes(uint8_t *buf, size_t len)
{ {
int errCode; int errCode;
if ((errCode = SecRandomCopyBytes(kSecRandomDefault, len, buf)) != errSecSuccess) { if ((errCode = SecRandomCopyBytes(kSecRandomDefault, len, buf)) != errSecSuccess) {
//CFStringRef errStr;
//errStr = SecCopyErrorMessageString(errCode, NULL);
//CFRelease(errStr);
error_print(); error_print();
fprintf(stderr, "%s:%d: SecRandomCopyBytes() return OSStatus = %d\n", __FILE__, __LINE__, errCode);
/*
CFStringRef errStr;
errStr = SecCopyErrorMessageString(errCode, NULL);
fprintf(stderr, "error: %s\n", CFStringGetCStringPtr(errStr, kCFStringEncodingMacRoman));
CFRelease(errStr); // -framework CoreFoundation
*/
return -1; return -1;
} }
return 1; return 1;
} }

View File

@@ -14,7 +14,9 @@
#include <stdlib.h> #include <stdlib.h>
#include <stdint.h> #include <stdint.h>
#include <unistd.h> // in Linux #include <unistd.h> // in Linux
//#include <sys/random.h> // in Apple #ifdef APPLE
#include <sys/random.h> // in Apple
#endif
#include <gmssl/rand.h> #include <gmssl/rand.h>
#include <gmssl/error.h> #include <gmssl/error.h>
@@ -37,4 +39,3 @@ int rand_bytes(uint8_t *buf, size_t len)
} }
return 1; return 1;
} }