Differences From Artifact [63ca861d17]:
- File generic/tls.c — part of check-in [9e6e94200c] at 2023-12-04 03:56:29 on branch crypto — Split list operations into separate functions to make it easier for OpenSSL 3.0 changes. Added pkey list function. Added mac info and pkey info placeholder functions. More checks for NULL pointers. Moved legacy load ciphers and digest to init routine. (user: bohagan, size: 82939) [annotate] [blame] [check-ins using]
To Artifact [4273abe6e0]:
- File generic/tls.c — part of check-in [d4c2159faf] at 2023-12-11 05:24:46 on branch crypto — Added KDF module to derive keys and ivs from passwords and salts. Added -hash option as alias for -digest. (user: bohagan, size: 82968) [annotate] [blame] [check-ins using]
︙ | |||
2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 | 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 | + | Tcl_CreateObjCommand(interp, "tls::misc", MiscObjCmd, (ClientData) 0, (Tcl_CmdDeleteProc *) NULL); Tcl_CreateObjCommand(interp, "tls::unimport", UnimportObjCmd, (ClientData) 0, (Tcl_CmdDeleteProc *) NULL); Tcl_CreateObjCommand(interp, "tls::status", StatusObjCmd, (ClientData) 0, (Tcl_CmdDeleteProc *) NULL); Tls_DigestCommands(interp); Tls_EncryptCommands(interp); Tls_InfoCommands(interp); Tls_KeyCommands(interp); if (interp) { Tcl_Eval(interp, tlsTclInitScript); } return Tcl_PkgProvide(interp, PACKAGE_NAME, PACKAGE_VERSION); } |
︙ |