|
/* |
|
* Copyright (C) 2019-2023 Six Clovers, Inc. - All rights reserved. |
|
* |
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
|
* |
|
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
|
* |
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
|
*/ |
|
package com.sixclovers.external; |
|
|
|
import java.io.ByteArrayOutputStream; |
|
import java.io.IOException; |
|
import java.math.BigInteger; |
|
import java.nio.ByteBuffer; |
|
import java.nio.charset.StandardCharsets; |
|
import java.util.Arrays; |
|
|
|
import org.apache.commons.codec.digest.DigestUtils; |
|
import org.bouncycastle.jcajce.provider.digest.SHA256; |
|
import org.bouncycastle.util.encoders.Hex; |
|
import org.web3j.abi.FunctionReturnDecoder; |
|
import org.web3j.crypto.ECKeyPair; |
|
import org.web3j.crypto.Sign; |
|
import org.web3j.utils.Numeric; |
|
|
|
import com.sixclovers.utility.Log; |
|
import com.sixclovers.utility.Numbers; |
|
|
|
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; |
|
|
|
public final class EncodeDecodeUtil { |
|
|
|
private static final String ALPHABET = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"; // Everything except 0OIl |
|
|
|
private static final BigInteger ALPHABET_SIZE = BigInteger.valueOf(ALPHABET.length()); |
|
|
|
private static final String ZEROS = "0000000000000000000000000000000000000000000000000000000000000000"; |
|
|
|
// Converts the given Base58Check string to a byte array, verifies the checksum, and removes the checksum to return the payload. |
|
// The caller is responsible for handling the version byte(s). |
|
@SuppressFBWarnings(value = "UNSAFE_HASH_EQUALS", justification = "False positive") |
|
public static byte[] base58ToBytes(final String value) { |
|
final byte[] concat = base58ToRawBytes(value); |
|
final byte[] data = Arrays.copyOf(concat, concat.length - 4); |
|
final byte[] hash = Arrays.copyOfRange(concat, concat.length - 4, concat.length); |
|
|
|
final SHA256.Digest digest = new SHA256.Digest(); |
|
digest.update(data); |
|
final byte[] hash0 = digest.digest(); |
|
digest.reset(); |
|
digest.update(hash0); |
|
|
|
final byte[] rehash = Arrays.copyOf(digest.digest(), 4); |
|
if (!Arrays.equals(rehash, hash)) { |
|
// return null; |
|
throw new IllegalArgumentException("Checksum mismatch"); |
|
} |
|
return data; |
|
} |
|
|
|
public static String hexStringToBase58(final String hexString) { |
|
return encode58(Hex.decode(adjustHex(hexString))); |
|
} |
|
|
|
public static String hexStringToString(final String hexString) { |
|
return new String(Hex.decode(adjustHex(hexString)), StandardCharsets.UTF_8).trim(); |
|
} |
|
|
|
public static String parameter(final String base58) { |
|
String param = toHex(base58); |
|
if (param.startsWith("41")) { |
|
param = param.substring(2); |
|
} |
|
final String substring = ZEROS.substring(0, 64 - param.length()); |
|
return substring + param; |
|
} |
|
|
|
public static String sign(final String txId, final String seed) { |
|
final ECKeyPair keyPair = getECKeyPair(seed); |
|
final Sign.SignatureData signature = Sign.signMessage(Hex.decode(txId.getBytes(StandardCharsets.UTF_8)), keyPair, false); |
|
final ByteBuffer sigBuffer = ByteBuffer.allocate(signature.getR().length + signature.getS().length + 1); |
|
sigBuffer.put(signature.getR()); |
|
sigBuffer.put(signature.getS()); |
|
sigBuffer.put((byte)(signature.getV()[0] - 27)); |
|
|
|
return Numeric.toHexString(sigBuffer.array()); |
|
} |
|
|
|
public static BigInteger toBigInteger(final String hexString) { |
|
return new BigInteger(Hex.decode(adjustHex(hexString))); |
|
} |
|
|
|
public static String web3ToBase58(final String hexString) { |
|
return hexStringToBase58(FunctionReturnDecoder.decodeAddress(hexString)); |
|
} |
|
|
|
private static String adjustHex(String hexString) { |
|
if (hexString.startsWith("0x")) { |
|
hexString = "41" + hexString.substring(2); |
|
} |
|
if (Numbers.isOdd(hexString.length())) { |
|
hexString = "0" + hexString; |
|
} |
|
return hexString; |
|
} |
|
|
|
// Converts the given Base58Check string to a byte array, without checking or removing the trailing 4-byte checksum. |
|
private static byte[] base58ToRawBytes(final String value) { |
|
// Parse base-58 string |
|
BigInteger num = BigInteger.ZERO; |
|
for (int i = 0; i < value.length(); i++) { |
|
num = num.multiply(ALPHABET_SIZE); |
|
final int digit = ALPHABET.indexOf(value.charAt(i)); |
|
if (digit == -1) { |
|
throw new IllegalArgumentException("Invalid character for Base58Check"); |
|
} |
|
num = num.add(BigInteger.valueOf(digit)); |
|
} |
|
|
|
// Strip possible leading zero due to mandatory sign bit |
|
byte[] bytes = num.toByteArray(); |
|
if (bytes[0] == 0) { |
|
bytes = Arrays.copyOfRange(bytes, 1, bytes.length); |
|
} |
|
|
|
try { |
|
// Convert leading '1' characters to leading 0-value bytes |
|
final ByteArrayOutputStream buffer = new ByteArrayOutputStream(); |
|
for (int i = 0; i < value.length() && value.charAt(i) == ALPHABET.charAt(0); i++) { |
|
buffer.write(0); |
|
} |
|
buffer.write(bytes); |
|
return buffer.toByteArray(); |
|
} catch (final IOException e) { |
|
throw new AssertionError(e); |
|
} |
|
} |
|
|
|
private static byte[] decode58(final String base58) { |
|
final byte[] decodeCheck = Base58.decode(base58); |
|
if (decodeCheck.length <= 4) { |
|
return null; |
|
} |
|
final byte[] decodeData = new byte[decodeCheck.length - 4]; |
|
System.arraycopy(decodeCheck, 0, decodeData, 0, decodeData.length); |
|
final byte[] hash0 = DigestUtils.sha256(decodeData); |
|
final byte[] hash1 = DigestUtils.sha256(hash0); |
|
if (hash1[0] == decodeCheck[decodeData.length] && |
|
hash1[1] == decodeCheck[decodeData.length + 1] && |
|
hash1[2] == decodeCheck[decodeData.length + 2] && |
|
hash1[3] == decodeCheck[decodeData.length + 3]) { |
|
return decodeData; |
|
} |
|
return null; |
|
} |
|
|
|
private static String encode58(final byte[] input) { |
|
final byte[] hash0 = DigestUtils.sha256(input); |
|
final byte[] hash1 = DigestUtils.sha256(hash0); |
|
final byte[] inputCheck = new byte[input.length + 4]; |
|
System.arraycopy(input, 0, inputCheck, 0, input.length); |
|
System.arraycopy(hash1, 0, inputCheck, input.length, 4); |
|
return Base58.encode(inputCheck); |
|
} |
|
|
|
private static ECKeyPair getECKeyPair(final String seed) { |
|
try { |
|
return ECKeyPair.create(new BigInteger(org.apache.commons.codec.binary.Hex.decodeHex(seed))); |
|
} catch (final Exception e) { |
|
Log.error(e); |
|
return null; |
|
} |
|
} |
|
|
|
private static String toHex(final String base58) { |
|
return Hex.toHexString(decode58(base58)); |
|
} |
|
|
|
private EncodeDecodeUtil() { |
|
// |
|
} |
|
|
|
} |