Overview
Comment: | Added global namespace qualifier to command names. Catch error for eval embedded tls.tcl script. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | crypto |
Files: | files | file ages | folders |
SHA3-256: |
c0bbfde5a4b64171a788e6811b170508 |
User & Date: | bohagan on 2024-03-10 05:56:07 |
Other Links: | branch diff | manifest | tags |
Context
2024-03-11
| ||
02:15 | Merge in build-info command and TEA updates check-in: 3d9a852fc6 user: bohagan tags: crypto | |
2024-03-10
| ||
05:56 | Added global namespace qualifier to command names. Catch error for eval embedded tls.tcl script. check-in: c0bbfde5a4 user: bohagan tags: crypto | |
05:06 | Reformatted test case helper procedures check-in: 89706c884d user: bohagan tags: crypto | |
Changes
Modified generic/tls.c from [6611dfd0b6] to [1e32f24336].
︙ | |||
2649 2650 2651 2652 2653 2654 2655 | 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 | - - - - - - + + + + + + - - + + | } if (TlsLibInit(0) != TCL_OK) { Tcl_AppendResult(interp, "could not initialize SSL library", (char *) NULL); return TCL_ERROR; } |
︙ |
Modified generic/tlsDigest.c from [64399c1a47] to [34b3c8adcd].
︙ | |||
1418 1419 1420 1421 1422 1423 1424 | 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 | - - - - - - - - - - - + + + + + + + + + + + | * * Side effects: * Creates commands * *------------------------------------------------------------------- */ int Tls_DigestCommands(Tcl_Interp *interp) { |
Modified generic/tlsEncrypt.c from [b594464c19] to [b7199aabc5].
︙ | |||
1334 1335 1336 1337 1338 1339 1340 | 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 | - - - + + + | * * Side effects: * Creates commands * *------------------------------------------------------------------- */ int Tls_EncryptCommands(Tcl_Interp *interp) { |
Modified generic/tlsInfo.c from [bc1451e080] to [28c894841a].
︙ | |||
1017 1018 1019 1020 1021 1022 1023 | 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 | - - - - - - - + + + + + + + - + - + | #if OPENSSL_VERSION_NUMBER < 0x10100000L OpenSSL_add_all_ciphers(); OpenSSL_add_all_digests(); OpenSSL_add_all_algorithms(); #endif |
Modified generic/tlsKDF.c from [a4bcf33c6e] to [ae7e0986eb].
︙ | |||
470 471 472 473 474 475 476 | 470 471 472 473 474 475 476 477 478 479 480 481 482 | - - - + + + | * * Side effects: * Creates commands * *------------------------------------------------------------------- */ int Tls_KDFCommands(Tcl_Interp *interp) { |
Modified generic/tlsRand.c from [4b096f23cb] to [72e29bdc6f].
︙ | |||
107 108 109 110 111 112 113 | 107 108 109 110 111 112 113 114 115 116 117 | - + | * * Side effects: * Creates commands * *------------------------------------------------------------------- */ int Tls_RandCommands(Tcl_Interp *interp) { |