我想使用 sun.misc.BASE64Encoder 包的 Base64 编码器,因为我需要对密码进行编码。但是,当我输入此包的导入时会产生错误。
要使用编码器代码的消息如下:
private synchronized static String hash(final String username, final String password) {
DIGEST.reset();
return new BASE64Encoder().encode(DIGEST.digest((username.toLowerCase() + password).getBytes()));
}
java中是否有一个等效的类做同样的事情?或者,也许有人知道如何获取原始类的代码吗?
谢谢 :)