Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Leap:15.2:Update
fipscheck
openssl-1_1-port.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File openssl-1_1-port.patch of Package fipscheck
Index: fipscheck-1.4.1/src/filehmac.c =================================================================== --- fipscheck-1.4.1.orig/src/filehmac.c +++ fipscheck-1.4.1/src/filehmac.c @@ -166,7 +166,7 @@ compute_file_hmac(const char *path, void int prelink = 0; #endif int rv = -1; - HMAC_CTX c; + HMAC_CTX *c; unsigned char rbuf[READ_BUFFER_LENGTH]; size_t len; unsigned int hlen; @@ -178,7 +178,7 @@ compute_file_hmac(const char *path, void } } - HMAC_CTX_init(&c); + c = HMAC_CTX_new(); #ifdef CALL_PRELINK if (access(PATH_PRELINK, X_OK) == 0) { @@ -197,15 +197,15 @@ compute_file_hmac(const char *path, void goto end; } - HMAC_Init(&c, hmackey, sizeof(hmackey)-1, EVP_sha256()); + HMAC_Init_ex(c, hmackey, sizeof(hmackey)-1, EVP_sha256(), NULL); while ((len=fread(rbuf, 1, sizeof(rbuf), f)) != 0) { - HMAC_Update(&c, rbuf, len); + HMAC_Update(c, rbuf, len); } len = sizeof(rbuf); /* reuse rbuf for hmac */ - HMAC_Final(&c, rbuf, &hlen); + HMAC_Final(c, rbuf, &hlen); *buf = malloc(hlen); if (*buf == NULL) { @@ -219,7 +219,7 @@ compute_file_hmac(const char *path, void rv = 0; end: - HMAC_CTX_cleanup(&c); + HMAC_CTX_free(c); if (f) fclose(f);
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor