authcode java_java 版本AuthCode

这个Java类实现了Discuz的AuthCode加密和解密方法,包括MD5和RC4算法。通过MD5处理密钥和使用BASE64进行编码解码,能够对字符串进行安全的加密和验证。
摘要由CSDN通过智能技术生成

import java.io.*;

import com.she.util.*;

import java.util.Random;

import java.util.*;

public class AuthCode {

public enum DiscuzAuthcodeMode {

Encode, Decode

};

private static MD5 md5 = new MD5();

private static BASE64 base64 = new BASE64();

///

/// 从字符串的指定位置截取指定长度的子字符串

///

/// 原字符串

/// 子字符串的起始位置

/// 子字符串的长度

/// 子字符串

public static String CutString(String str, int startIndex, int length) {

if (startIndex >= 0) {

if (length < 0) {

length = length * -1;

if (startIndex - length < 0) {

length = startIndex;

startIndex = 0;

} else {

startIndex = startIndex - length;

}

}

if (startIndex > str.length()) {

return "";

}

} else {

if (length < 0) {

return "";

} else {

if (length + startIndex > 0) {

length = length + startIndex;

startIndex = 0;

} else {

return "";

}

}

}

if (str.length() - startIndex < length) {

length = str.length() - startIndex;

}

return str.substring(startIndex, startIndex + length);

}

///

/// 从字符串的指定位置开始截取到字符串结尾的了符串

///

/// 原字符串

/// 子字符串的起始位置

/// 子字符串

public static String CutString(String str, int startIndex) {

return CutString(str, startIndex, str.length());

}

///

/// 返回文件是否存在

///

/// 文件名

/// 是否存在

public static boolean FileExists(String filename) {

File f = new File(filename);

return f.exists();

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值