CVS commit: src/crypto/external/bsd/openssl.old/include/openssl

2023-07-08 Thread Rin Okuyama
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

CVS commit: src/crypto/external/bsd/openssl.old/include/openssl

2023-07-08 Thread Rin Okuyama
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

CVS commit: src/crypto/external/bsd/openssl.old/lib

2023-07-08 Thread Rin Okuyama
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.

CVS commit: src/crypto/external/bsd/openssl.old/lib

2023-07-08 Thread Rin Okuyama
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.

CVS commit: src/crypto/external/bsd/openssl.old/lib/libcrypto/man

2023-05-20 Thread Christos Zoulas
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

CVS commit: src/crypto/external/bsd/openssl.old/lib/libcrypto/man

2023-05-20 Thread Christos Zoulas
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

CVS commit: src/crypto/external/bsd/openssl.old/dist

2023-04-18 Thread Christos Zoulas
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

CVS commit: src/crypto/external/bsd/openssl.old/dist

2023-04-18 Thread Christos Zoulas
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

CVS commit: src/crypto/external/bsd/openssl.old

2023-04-18 Thread Christos Zoulas
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

CVS commit: src/crypto/external/bsd/openssl.old

2023-04-18 Thread Christos Zoulas
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

Re: CVS commit: src/crypto/external/bsd/openssl.old/dist/crypto/hmac

2018-02-04 Thread maya
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; > +} > +