Differences From Artifact [9aada2ce3d]:
- File generic/tlsInfo.c — part of check-in [e88816cf57] at 2023-11-07 23:40:52 on branch crypto — Optimized info commands and added more error checking. Use modern set protocol versions API for ciphers list. (user: bohagan, size: 11938) [annotate] [blame] [check-ins using]
To Artifact [bed510f6e3]:
- File generic/tlsInfo.c — part of check-in [49f76ba54c] at 2023-11-10 20:09:23 on branch crypto — Added Cipher MAC (CMAC) support (user: bohagan, size: 11972) [annotate] [blame] [check-ins using]
︙ | |||
68 69 70 71 72 73 74 75 76 77 78 79 80 81 | 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | + | *------------------------------------------------------------------- */ static int CiphersObjCmd(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]) { SSL_CTX *ctx = NULL; SSL *ssl = NULL; STACK_OF(SSL_CIPHER) *sk = NULL; int index, verbose = 0, use_supported = 0; int min_version, max_version; dprintf("Called"); #if OPENSSL_VERSION_NUMBER < 0x10100000L OpenSSL_add_all_ciphers(); /* Make sure they're loaded */ #endif |
︙ |