Hi, We are in the middle of a migration of our production environment, from Solaris to SuSe Linux, and there is a J2EE Java application that uses/depends on a proprietary library to encoding Juniper passwords of Radius users/administrators. This library is implemented in a Java file called ñSBRutils.jarî that loads a Solaris Shared Library called ñlibxencmd5.soî to perform a MD5 encoding for the Radius passwords. In the content of de Java file, there is a META-INF file with this information: Manifest-Version: 1.0 Specification-Title: Utilities for Steel Belted Radius Created-By: 1.4.2_05 (Sun Microsystems Inc.) Implementation-Title: com.juniper.sbr.util Specification-Vendor: Juniper Networks, Inc. Specification-Version: 1.0 Implementation-Version: build01 Implementation-Vendor: Juniper Networks, Inc. And in the interface we can see the operations that are implemented in this package: package com.juniper.sbr.utils; public class xencmd5 { private java.lang.String ENC_MARKER; public xencmd5() private native java.lang.String EncMd5Generate(java.lang.String s, java.lang.String s1, int i, java.lang.String s2); private native java.lang.String EncMd5Decrypt(java.lang.String s, java.lang.String s1); public java.lang.String Generate(java.lang.String s, java.lang.String s1, int i, java.lang.String s2) public java.lang.String Decrypt(java.lang.String s, java.lang.String s1) public boolean Validate(java.lang.String s, java.lang.String s1, java.lang.String s2) } So the problem itÇs that we need the ñLinux versionî of this library, because the Solaris version is not valid in our new production environment. Could you help us with this problem? is possible to find a Linux version of ñSBRutils.jarî and ñlibxencmd5.soî? We will appreciate any kind of feedback. Thanks in advance. Regards.
... View more