Differences From Artifact [8122b24581]:
- File generic/tlsDigest.c — part of check-in [d7ab5a4ae1] at 2023-12-10 05:55:14 on branch crypto — Refactored tlsInfo.c file to clear errors, use Obj in var names, and pass name as object instead of string. Split cipher command from its info function. (user: bohagan, size: 40085) [annotate] [blame] [check-ins using]
To Artifact [59f6eb5d91]:
- File generic/tlsDigest.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: 40114) [annotate] [blame] [check-ins using]
︙ | |||
1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 | 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 | + | OPTSTR("-channel", channel); OPTOBJ("-cipher", cipherObj); OPTOBJ("-command", cmdObj); OPTOBJ("-data", dataObj); OPTOBJ("-digest", digestObj); OPTOBJ("-file", fileObj); OPTOBJ("-filename", fileObj); OPTOBJ("-hash", digestObj); OPTOBJ("-key", keyObj); OPTOBJ("-mac", macObj); OPTBAD("option", "-bin, -channel, -cipher, -command, -data, -digest, -file, -filename, -hex, -key, or -mac"); return TCL_ERROR; } |
︙ |