Differences From Artifact [8b16c00091]:
- File generic/tlsRand.c — part of check-in [ce307ddd1f] at 2024-01-29 02:41:11 on branch crypto — Updated to latest set of TCL 9.0 API changes. Made Tcl_Size updates. (user: bohagan, size: 2793) [annotate] [blame] [check-ins using]
To Artifact [4b096f23cb]:
- File generic/tlsRand.c — part of check-in [fa17431520] at 2024-02-04 03:31:59 on branch crypto — Merged changes from master branch (user: bohagan, size: 2801) [annotate] [blame] [check-ins using] [more...]
︙ | |||
82 83 84 85 86 87 88 | 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | - + | /* Get random bytes */ if (objc == 2) { res = RAND_bytes(out_buf, out_len); } else { res = RAND_priv_bytes(out_buf, out_len); } if (!res) { |
︙ |