import java.math.BigInteger;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.MessageDigest;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.interfaces.ECPrivateKey;
import java.security.interfaces.ECPublicKey;
import java.security.spec.ECGenParameterSpec;
import java.security.spec.ECPoint;
import org.apache.commons.codec.DecoderException;
import org.apache.commons.codec.binary.Hex;
import org.bitcoinj.core.Base58;
import org.bitcoinj.core.NetworkParameters;
import org.bitcoinj.params.MainNetParams;
import org.bitcoinj.params.TestNet3Params;
import org.bitcoinj.core.ECKey;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.spongycastle.crypto.digests.RIPEMD160Digest;
/**
* 生成虚拟货币地址
*
* @author
* @date 2018年11月16日 下午2:44:17
*/
public class GenerateUtil {
private static Logger logger = LoggerFactory.getLogger(GenerateUtil.class);
/**
* 生成比特币地址(主网络版本字节0x00,测试网络0x6F)
*
* @author
* @date 2018年11月16日 下午2:51:39
*/
public static String bit() {
NetworkParameters params = TestNet3Params.get();
ECKey key = new ECKey();
logger.warn("私钥 => {}", key.getPrivateKeyAsHex());
logger.warn("公钥 => {}", key.getPublicKeyAsHex());
logger.warn("地址 => {}", key.toAddress(params));
return key.toAddress(params).toString();
}
public static void main(String[] args) throws DecoderException {
parent("00");
}
/**
* 比特系列地址生成方法
*
* @author
* @date 2018年11月21日 下午4:43:45
*/
private static String parent(String version) {
try {
// 椭圆曲线加密生成私钥
KeyPairGenerator keyGen = KeyPairGenerator.getInstance("EC");
ECGenParameterSpec ecSpec = new ECGenParameterSpec("secp256k1");
keyGen.initialize(ecSpec);
// 创建密钥对
KeyPair kp = keyGen.generateKeyPair();
PublicKey pub = kp.getPublic();
PrivateKey pvt = kp.getPrivate();
// 获取私钥
ECPrivateKey epvt = (ECPrivateKey) pvt;
String sepvt = Utils.adjustTo64(epvt.getS().toString(16)).toUpperCase();
logger.warn("s[" + sepvt.length() + "]: " + sepvt);
logger.warn("私钥{}", sepvt);
// 获取公钥
ECPublicKey epub = (ECPublicKey) pub;
ECPoint pt = epub.getW();
String sx = Utils.adjustTo64(pt.getAffineX().toString(16)).toUpperCase();
String sy = Utils.adjustTo64(pt.getAffineY().toString(16)).toUpperCase();
// 公钥
String bcPub = "04" + sx + sy;
logger.warn("公钥{}", bcPub);
// sha256
MessageDigest sha = MessageDigest.getInstance("SHA-256");
byte[] s1 = sha.digest(bcPub.getBytes("UTF-8"));
logger.warn("sha256后{}", Utils.byte2Hex(s1).toUpperCase());
// ripemd160
RIPEMD160Digest digest = new RIPEMD160Digest();
digest.update(s1, 0, s1.length);
byte[] ripemd160Bytes = new byte[digest.getDigestSize()];
digest.doFinal(ripemd160Bytes, 0);
logger.warn("ripemd160加密后{}", Utils.bytesToHexString(ripemd160Bytes));
// 添加主网络版本字节
byte[] networkID = new BigInteger(version, 16).toByteArray();
byte[] extendedRipemd160Bytes = Utils.add(networkID, ripemd160Bytes);
logger.warn("添加NetworkID后{}", Utils.bytesToHexString(extendedRipemd160Bytes));
// 重复sha256两次
byte[] twiceSha256Bytes = Utils.sha256(Utils.sha256(extendedRipemd160Bytes));
logger.warn("两次sha256加密后{}", Utils.bytesToHexString(twiceSha256Bytes));
// 获取前四个字节当做地址校验和
byte[] checksum = new byte[4];
System.arraycopy(twiceSha256Bytes, 0, checksum, 0, 4);
logger.warn("checksum{}", Utils.bytesToHexString(checksum));
byte[] binaryBitcoinAddressBytes = Utils.add(extendedRipemd160Bytes, checksum);
logger.warn("添加checksum之后{}", Utils.bytesToHexString(binaryBitcoinAddressBytes));
// 使用base58对地址进行编码
String ltccoinAddress = Base58.encode(binaryBitcoinAddressBytes);
logger.warn("地址{}", ltccoinAddress);
return ltccoinAddress;
} catch (Exception e) {
e.printStackTrace();
}
return "";
}
/**
* 生成莱特币地址30
*
* @author
* @date 2018年11月20日 上午9:06:05
*/
public static String ltc() {
return parent("30");
}
/**
* 木币地址49
* @author 1
* @date 2019年6月11日 上午11:38:34
*/
public static String wood() {
return parent("49");
}
/**
* 生成狗狗币地址
*
* @author
* @date 2018年11月20日 下午3:35:48
*/
public static String doge() {
return parent("1e");
}
/**
* 生成dash(达世币)地址4c
*
* @author
* @date 2018年11月21日 上午9:18:34
*/
public static String dash() {
return parent("4c");
}
/**
* 生成比特黄金的地址26
*
* @author
* @date 2018年11月21日 下午4:31:30
*/
public static String btg() {
return parent("26");
}
/**
* 萌奈币(Mona)地址生成32
*
* @author
* @date 2018年11月21日 下午4:45:22
*/
public static String mona() {
return parent("32");
}
/**
* 量子链(qtum)地址生成3A
*
* @author
* @date 2018年11月21日 下午4:47:10
*/
public static String qtum() {
return parent("3A");
}
/**
* 蜗牛币(rdd)地址生成3d
*
* @author
* @date 2018年11月21日 下午4:53:26
*/
public static String rdd() {
return parent("3d");
}
static final String HEXES = "0123456789abcdef";
public static String getHex(byte[] raw) {
if (raw == null) {
return null;
}
final StringBuilder hex = new StringBuilder(2 * raw.length);
for (final byte b : raw) {
hex.append(HEXES.charAt((b & 0xF0) >> 4)).append(HEXES.charAt((b & 0x0F)));
}
return hex.toString();
}
}
import java.math.BigInteger;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.Random;
public class Utils {
private static final String ALPHABET = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";
private static final String base32Chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567";
private static final int[] base32Lookup = {
0xFF, 0xFF, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F, // '0', '1', '2', '3', '4', '5', '6', '7'
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, // '8', '9', ':', ';', '<', '=', '>', '?'
0xFF, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, // '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G'
0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, // 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O'
0x0F, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, // 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W'
0x17, 0x18, 0x19, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, // 'X', 'Y', 'Z', '[', '\', ']', '^', '_'
0xFF, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, // '`', 'a', 'b', 'c', 'd', 'e', 'f', 'g'
0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, // 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o'
0x0F, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, // 'p', 'q', 'r', 's', 't', 'u', 'v', 'w'
0x17, 0x18, 0x19, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF // 'x', 'y', 'z', '{', '|', '}', '~', 'DEL'
};
/**
* sha256加密算法
*
* @author
* @date 2018年11月20日 下午5:56:46
*/
public static byte[] sha256(byte[] data) {
try {
MessageDigest md = MessageDigest.getInstance("SHA-256");
md.update(data);
return md.digest();
} catch (NoSuchAlgorithmException e) {
throw new IllegalStateException(e);
}
}
/**
* 数组转换成十六进制字符串
*
* @author
* @date 2018年11月20日 下午5:57:37
*/
public static String bytesToHexString(byte[] bArray) {
StringBuilder sb = new StringBuilder(bArray.length);
String sTemp;
for (int i = 0; i < bArray.length; i++) {
sTemp = Integer.toHexString(0xFF & bArray[i]);
if (sTemp.length() < 2)
sb.append(0);
sb.append(sTemp.toUpperCase());
}
return sb.toString();
}
/**
* 两个byte[]数组相加
*
* @author
* @date 2018年11月20日 下午5:57:49
*/
public static byte[] add(byte[] data1, byte[] data2) {
byte[] result = new byte[data1.length + data2.length];
System.arraycopy(data1, 0, result, 0, data1.length);
System.arraycopy(data2, 0, result, data1.length, data2.length);
return result;
}
/**
* 补位
*
* @author
* @date 2018年11月20日 上午9:07:21
*/
public static String adjustTo64(String s) {
switch (s.length()) {
case 62:
return "00" + s;
case 63:
return "0" + s;
case 64:
return s;
default:
throw new IllegalArgumentException("not a valid key: " + s);
}
}
/**
* 将byte转为16进制
*
* @author
* @date 2018年11月19日 下午7:51:13
*/
public static String byte2Hex(byte[] bytes) {
StringBuffer stringBuffer = new StringBuffer();
String temp = null;
for (int i = 0; i < bytes.length; i++) {
temp = Integer.toHexString(bytes[i] & 0xFF);
if (temp.length() == 1) {
// 1得到一位的进行补0操作
stringBuffer.append("0");
}
stringBuffer.append(temp);
}
return stringBuffer.toString();
}
/**
* base58编码
*
* @author
* @data 2018年10月9日 上午9:08:22
*/
public static byte[] decodeBase58To25Bytes(String input) {
BigInteger num = BigInteger.ZERO;
for (char t : input.toCharArray()) {
int p = ALPHABET.indexOf(t);
if (p == -1)
return null;
num = num.multiply(BigInteger.valueOf(58)).add(BigInteger.valueOf(p));
}
byte[] result = new byte[25];
byte[] numBytes = num.toByteArray();
System.arraycopy(numBytes, 0, result, result.length - numBytes.length, numBytes.length);
return result;
}
/**
* base32编码
*
* @author
* @date 2018年11月26日 上午10:12:45
*/
public static String base32encode(final byte[] bytes) {
int i = 0, index = 0, digit = 0;
int currByte, nextByte;
StringBuffer base32 = new StringBuffer((bytes.length + 7) * 8 / 5);
while (i < bytes.length) {
currByte = (bytes[i] >= 0) ? bytes[i] : (bytes[i] + 256); // unsign
/* Is the current digit going to span a byte boundary? */
if (index > 3) {
if ((i + 1) < bytes.length) {
nextByte = (bytes[i + 1] >= 0) ? bytes[i + 1] : (bytes[i + 1] + 256);
} else {
nextByte = 0;
}
digit = currByte & (0xFF >> index);
index = (index + 5) % 8;
digit <<= index;
digit |= nextByte >> (8 - index);
i++;
} else {
digit = (currByte >> (8 - (index + 5))) & 0x1F;
index = (index + 5) % 8;
if (index == 0) {
i++;
}
}
base32.append(base32Chars.charAt(digit));
}
return base32.toString();
}
/**
* base32解码
* @author
* @date 2018年11月26日 上午10:14:02
*/
public static byte[] base32decode(
final String base32) {
int i, index, lookup, offset, digit;
byte[] bytes = new byte[base32.length() * 5 / 8];
for (i = 0, index = 0, offset = 0; i < base32.length(); i++) {
lookup = base32.charAt(i) - '0';
/* Skip chars outside the lookup table */
if (lookup < 0 || lookup >= base32Lookup.length) {
continue;
}
digit = base32Lookup[lookup];
/* If this digit is not in the table, ignore it */
if (digit == 0xFF) {
continue;
}
if (index <= 3) {
index = (index + 5) % 8;
if (index == 0) {
bytes[offset] |= digit;
offset++;
if (offset >= bytes.length) {
break;
}
} else {
bytes[offset] |= digit << (8 - index);
}
} else {
index = (index + 5) % 8;
bytes[offset] |= (digit >>> index);
offset++;
if (offset >= bytes.length) {
break;
}
bytes[offset] |= digit << (8 - index);
}
}
return bytes;
}
public static void main(String[] args) {
byte[] b = new byte[32];
Random r = new Random();
r.nextBytes(b);
System.out.println(printHexString(b));
}
public static String printHexString(byte[] b) {
String a = "";
for (int i = 0; i < b.length; i++) {
String hex = Integer.toHexString(b[i] & 0xFF);
//System.out.println(hex);
if (hex.length() == 1) {
hex = '0' + hex;
}
a = a + hex + ",";
}
return a;
}
}