taoensso / encore

Core utils library for Clojure/Script
https://www.taoensso.com/encore
Eclipse Public License 1.0
272 stars 53 forks source link

fix reseeding-srng with Java8+ #79

Closed shiunko closed 2 months ago

shiunko commented 2 months ago

In Java8+, an exception NoSuchAlgorithmException will be thrown Change: (compile-if java.security.SecureRandom/getInstanceStrong ... ...) -> (compile-if (java.security.SecureRandom/getInstanceStrong) ... ...)

ptaoussanis commented 2 months ago

Thank you! This was an unintended regression - have manually merged your fix and released v3.119.0 👍🙏