Module Name:src
Committed By: rin
Date: Sat Jul 8 23:42:48 UTC 2023
Modified Files:
src/crypto/external/bsd/openssl.old/include/openssl: opensslconf.h
Log Message:
openssl.old: Remove OPENSSL_NO_EC_NISTP_64_GCC_128 hack for alpha.
Unaligned memory access reported in PR l
Module Name:src
Committed By: rin
Date: Sat Jul 8 23:42:48 UTC 2023
Modified Files:
src/crypto/external/bsd/openssl.old/include/openssl: opensslconf.h
Log Message:
openssl.old: Remove OPENSSL_NO_EC_NISTP_64_GCC_128 hack for alpha.
Unaligned memory access reported in PR l
Module Name:src
Committed By: rin
Date: Sat Jul 8 23:41:27 UTC 2023
Modified Files:
src/crypto/external/bsd/openssl.old/lib: Makefile
Added Files:
src/crypto/external/bsd/openssl.old/lib: Makefile.subdir
Log Message:
openssl.old: Fix build with HAVE_OPENSSL == 11.
Module Name:src
Committed By: rin
Date: Sat Jul 8 23:41:27 UTC 2023
Modified Files:
src/crypto/external/bsd/openssl.old/lib: Makefile
Added Files:
src/crypto/external/bsd/openssl.old/lib: Makefile.subdir
Log Message:
openssl.old: Fix build with HAVE_OPENSSL == 11.
Module Name:src
Committed By: christos
Date: Sat May 20 14:44:30 UTC 2023
Removed Files:
src/crypto/external/bsd/openssl.old/lib/libcrypto/man: openssl_hmac.3
openssl_md5.3
Log Message:
remove old files that cause conflicts on case insensitive filesystems. Repo
Module Name:src
Committed By: christos
Date: Sat May 20 14:44:30 UTC 2023
Removed Files:
src/crypto/external/bsd/openssl.old/lib/libcrypto/man: openssl_hmac.3
openssl_md5.3
Log Message:
remove old files that cause conflicts on case insensitive filesystems. Repo
Module Name:src
Committed By: christos
Date: Tue Apr 18 20:11:00 UTC 2023
Removed Files:
src/crypto/external/bsd/openssl.old/dist: ACKNOWLEDGMENTS
CHANGES.SSLeay GitConfigure GitMake INSTALL.DJGPP INSTALL.MacOS
INSTALL.NW INSTALL.OS2 INSTALL.VMS INST
Module Name:src
Committed By: christos
Date: Tue Apr 18 20:11:00 UTC 2023
Removed Files:
src/crypto/external/bsd/openssl.old/dist: ACKNOWLEDGMENTS
CHANGES.SSLeay GitConfigure GitMake INSTALL.DJGPP INSTALL.MacOS
INSTALL.NW INSTALL.OS2 INSTALL.VMS INST
Module Name:src
Committed By: christos
Date: Tue Apr 18 14:24:25 UTC 2023
Modified Files:
src/crypto/external/bsd/openssl.old: mkpc
src/crypto/external/bsd/openssl.old/dist/crypto: arm_arch.h
Log Message:
merge conflicts
To generate a diff of this commit:
cvs rdi
Module Name:src
Committed By: christos
Date: Tue Apr 18 14:24:25 UTC 2023
Modified Files:
src/crypto/external/bsd/openssl.old: mkpc
src/crypto/external/bsd/openssl.old/dist/crypto: arm_arch.h
Log Message:
merge conflicts
To generate a diff of this commit:
cvs rdi
match new with malloc -> calloc please
> +static inline HMAC_CTX *HMAC_CTX_new(void)
> +{
> + HMAC_CTX *ctx = malloc(sizeof(*ctx));
> + if (ctx == NULL)
> + return NULL;
> + HMAC_CTX_init(ctx);
> + return ctx;
> +}
> +
11 matches
Mail list logo