Does this require 1.2 or 1.4 to work?
MessageDigest md = MessageDigest.getInstance( "MD5" );

Signature
Canadian Mind Products, Roedy Green.
Coaching, problem solving, economical contract programming.
See http://mindprod.com/jgloss/jgloss.html for The Java Glossary.
nobody - 08 Jun 2004 00:23 GMT
> Does this require 1.2 or 1.4 to work?
>
> MessageDigest md = MessageDigest.getInstance( "MD5" );
1.2. The javax.crypto stuff would have been bundled, had it not been
for U.S. restrictions on crypto export. That's why they showed up in
1.4 (relaxation of those restrictions along with the jurisdiction policy
implementation made it legally feasible).
Frank - 09 Jun 2004 02:24 GMT
> Does this require 1.2 or 1.4 to work?
>
> MessageDigest md = MessageDigest.getInstance( "MD5" );
MD5 was widespread enough, it is present even as early back as 1.1; I
don't know if it was included in 1.0 though
Roedy Green - 09 Jun 2004 02:37 GMT
>MD5 was widespread enough, it is present even as early back as 1.1; I
>don't know if it was included in 1.0 though
It was not part of the standard distribution, though, right?

Signature
Canadian Mind Products, Roedy Green.
Coaching, problem solving, economical contract programming.
See http://mindprod.com/jgloss/jgloss.html for The Java Glossary.