Mercurial > hg > monetdb-java
diff src/main/java/nl/cwi/monetdb/jdbc/MonetDriver.java.in @ 363:34ce6e1b1be8
Remove support for deprecated MD5 encryption algorithm in MapiSocket.
author | Martin van Dinther <martin.van.dinther@monetdbsolutions.com> |
---|---|
date | Thu, 10 Sep 2020 18:56:36 +0200 (2020-09-10) |
parents | 54137aeb1f92 |
children | d7661075ebf7 |
line wrap: on
line diff
--- a/src/main/java/nl/cwi/monetdb/jdbc/MonetDriver.java.in +++ b/src/main/java/nl/cwi/monetdb/jdbc/MonetDriver.java.in @@ -224,8 +224,8 @@ final public class MonetDriver implement prop = new DriverPropertyInfo("hash", null); prop.required = false; - prop.description = "Force the use of the given hash algorithm during challenge response (one of SHA1, MD5, plain)"; - prop.choices = new String[] { "SHA512", "SHA384", "SHA256", "SHA1", "MD5" }; + prop.description = "Force the use of the given hash algorithm (SHA512 or SHA384 or SHA256 or SHA1) during challenge response"; + prop.choices = new String[] { "SHA512", "SHA384", "SHA256", "SHA1" }; dpi[5] = prop; prop = new DriverPropertyInfo("treat_blob_as_binary", "false");