Differences From Artifact [40a127f356]:
- File win/makefile.vc — part of check-in [94f8408d0d] at 2023-12-24 22:57:35 on branch crypto — Moved common get cipher, digest, etc. functions to tlsUtil.c file. Renamed tlsKey.c to tlsKDF.c to better reflect contents. Standardized error messages. (user: bohagan, size: 2732) [annotate] [blame] [check-ins using]
To Artifact [75e334f091]:
- File win/makefile.vc — part of check-in [baa34f4208] at 2023-12-28 03:00:56 on branch crypto — Added random bytes command to generate random bytes using a cryptographically secure pseudo random generator (CSPRNG). (user: bohagan, size: 2758) [annotate] [blame] [check-ins using]
︙ | |||
28 29 30 31 32 33 34 35 36 37 38 39 40 41 | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | + | PRJ_OBJS = $(TMP_DIR)\tls.obj \ $(TMP_DIR)\tlsBIO.obj \ $(TMP_DIR)\tlsDigest.obj \ $(TMP_DIR)\tlsEncrypt.obj \ $(TMP_DIR)\tlsInfo.obj \ $(TMP_DIR)\tlsIO.obj \ $(TMP_DIR)\tlsKDF.obj \ $(TMP_DIR)\tlsRand.obj \ $(TMP_DIR)\tlsUtil.obj \ $(TMP_DIR)\tlsX509.obj # Define any additional project include flags # SSL_INSTALL_FOLDER = with the OpenSSL installation folder following. PRJ_INCLUDES = -I"$(SSL_INSTALL_FOLDER)\include" -I"$(OPENSSL_INSTALL_DIR)\include" |
︙ |