Created
September 10, 2019 18:01
-
-
Save sleepdefic1t/b71787cd806cdf7fc48d66ab58c1679e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/******************************************************************************* | |
* Ark Wallet | |
* (c) 2017 Ledger | |
* (c) ARK Ecosystem | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, | |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
* See the License for the specific language governing permissions and | |
* limitations under the License. | |
********************************************************************************/ | |
#include "utils/base58.h" | |
#include <os.h> | |
#include "constants.h" | |
#include "hashing.h" | |
////////////////////////////////////////////////////////////////////// | |
#define BASE58_ALPHABET_LENGTH 58U | |
#define BASE58_ENCODE_BUFFER_LENGTH 164U | |
#define BASE58_TABLE_LEN 128U | |
#define UINT256_BYTE_LENGTH 256U | |
////////////////////////////////////////////////////////////////////// | |
const uint8_t const BASE58TABLE[] = { | |
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | |
0xff, 0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8, 0xff, 0xff, | |
0xff, 0xff, 0xff, 0xff, 0xff, 0x9, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf, | |
0x10, 0xff, 0x11, 0x12, 0x13, 0x14, 0x15, 0xff, 0x16, 0x17, 0x18, 0x19, | |
0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0xff, 0xff, 0xff, 0xff, 0xff, | |
0xff, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, | |
0xff, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, | |
0x37, 0x38, 0x39, 0xff, 0xff, 0xff, 0xff, 0xff | |
}; | |
const uint8_t const BASE58ALPHABET[] = { | |
'1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', | |
'G', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', | |
'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'm', | |
'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' | |
}; | |
////////////////////////////////////////////////////////////////////// | |
static uint8_t decodeBase58(uint8_t WIDE *in, | |
uint8_t length, | |
uint8_t *out, | |
uint8_t maxoutlen) { | |
uint8_t tmp[BASE58_ENCODE_BUFFER_LENGTH]; | |
uint8_t buffer[BASE58_ENCODE_BUFFER_LENGTH]; | |
uint8_t i; | |
uint8_t j; | |
uint8_t startAt; | |
uint8_t zeroCount = 0U; | |
if (length > sizeof(tmp)) { | |
THROW(INVALID_PARAMETER); | |
} | |
os_memmove(tmp, in, length); | |
for (i = 0U; i < length; i++) { | |
if (in[i] > BASE58_TABLE_LEN) { | |
THROW(EXCEPTION); | |
} | |
tmp[i] = BASE58TABLE[in[i]]; | |
if (tmp[i] == 0xFF) { | |
THROW(EXCEPTION); | |
} | |
} | |
while ((zeroCount < length) && (tmp[zeroCount] == 0U)) { | |
++zeroCount; | |
} | |
j = length; | |
startAt = zeroCount; | |
while (startAt < length) { | |
uint16_t remainder = 0U; | |
uint8_t divLoop; | |
for (divLoop = startAt; divLoop < length; divLoop++) { | |
uint16_t digit256 = (uint16_t)(tmp[divLoop] & 0xff); | |
uint16_t tmpDiv = remainder * BASE58_ALPHABET_LENGTH + digit256; | |
tmp[divLoop] = (uint8_t)(tmpDiv / UINT256_BYTE_LENGTH); | |
remainder = (tmpDiv % UINT256_BYTE_LENGTH); | |
} | |
if (tmp[startAt] == 0U) { | |
++startAt; | |
} | |
buffer[--j] = (uint8_t)remainder; | |
} | |
while ((j < length) && (buffer[j] == 0U)) { | |
++j; | |
} | |
length = length - (j - zeroCount); | |
if (maxoutlen < length) { | |
THROW(EXCEPTION_OVERFLOW); | |
} | |
os_memmove(out, buffer + j - zeroCount, length); | |
return length; | |
} | |
////////////////////////////////////////////////////////////////////// | |
static uint8_t encodeBase58(uint8_t WIDE *in, | |
uint8_t length, | |
uint8_t *out, | |
uint8_t maxoutlen) { | |
uint8_t tmp[BASE58_ENCODE_BUFFER_LENGTH]; | |
uint8_t buffer[BASE58_ENCODE_BUFFER_LENGTH]; | |
uint8_t j; | |
uint8_t startAt; | |
uint8_t zeroCount = 0; | |
if (length > sizeof(tmp)) { | |
THROW(INVALID_PARAMETER); | |
} | |
os_memmove(tmp, in, length); | |
while ((zeroCount < length) && (tmp[zeroCount] == 0U)) { | |
++zeroCount; | |
} | |
j = 2U * length; | |
startAt = zeroCount; | |
while (startAt < length) { | |
uint16_t remainder = 0U; | |
uint8_t divLoop; | |
for (divLoop = startAt; divLoop < length; divLoop++) { | |
uint16_t digit256 = (uint16_t)(tmp[divLoop] & 0xff); | |
uint16_t tmpDiv = remainder * UINT256_BYTE_LENGTH + digit256; | |
tmp[divLoop] = (uint8_t)(tmpDiv / BASE58_ALPHABET_LENGTH); | |
remainder = (tmpDiv % BASE58_ALPHABET_LENGTH); | |
} | |
if (tmp[startAt] == 0U) { | |
++startAt; | |
} | |
buffer[--j] = (uint8_t)BASE58ALPHABET[remainder]; | |
} | |
while ((j < (2U * length)) && (buffer[j] == BASE58ALPHABET[0])) { | |
++j; | |
} | |
while (zeroCount-- > 0U) { | |
buffer[--j] = BASE58ALPHABET[0]; | |
} | |
length = 2U * length - j; | |
if (maxoutlen < length) { | |
THROW(EXCEPTION_OVERFLOW); | |
} | |
os_memmove(out, (buffer + j), length); | |
return length; | |
} | |
////////////////////////////////////////////////////////////////////// | |
uint16_t decodeBase58Address(uint8_t WIDE *in, | |
uint16_t inLength, | |
uint8_t *out, | |
uint16_t outLength) { | |
uint8_t buffer[CX_SHA256_SIZE]; | |
outLength = decodeBase58(in, inLength, out, outLength); | |
uint8_t hashLength = outLength - RIPEMD160_TMP_LENGTH; | |
Sha256 hash; | |
hash256(&hash, out, hashLength, buffer); | |
hash256(&hash, buffer, CX_SHA256_SIZE, buffer); | |
if (os_memcmp(&out[hashLength], buffer, RIPEMD160_TMP_LENGTH)) { | |
THROW(INVALID_CHECKSUM); | |
} | |
return outLength; | |
} | |
////////////////////////////////////////////////////////////////////// | |
uint16_t encodeBase58Address(uint8_t WIDE *in, | |
uint16_t inLength, | |
uint8_t *out, | |
uint16_t outLength) { | |
uint8_t temp[inLength + RIPEMD160_TMP_LENGTH]; | |
uint8_t checksum[CX_SHA256_SIZE]; | |
Sha256 hash; | |
hash256(&hash, in, inLength, checksum); | |
hash256(&hash, checksum, CX_SHA256_SIZE, checksum); | |
os_memmove(&temp[inLength], checksum, RIPEMD160_TMP_LENGTH); | |
return encodeBase58(temp, inLength + RIPEMD160_TMP_LENGTH, out, outLength); | |
} | |
////////////////////////////////////////////////////////////////////// | |
uint16_t encodeBase58PublicKey(uint8_t WIDE *in, | |
uint16_t inLength, | |
uint8_t *out, | |
uint16_t outLength, | |
uint16_t version, | |
uint8_t alreadyHashed) { | |
uint8_t temp[inLength + RIPEMD160_TMP_LENGTH]; | |
uint8_t checksum[CX_SHA256_SIZE]; | |
uint8_t versionSize = (version > 255U ? 2U : 1U); | |
uint8_t ripeLength = versionSize + CX_RIPEMD160_SIZE; | |
if (version > 255U) { | |
temp[0] = (version >> 8U); | |
temp[1] = version; | |
} | |
else { | |
temp[0] = version; | |
} | |
if (!alreadyHashed) { | |
hash160(in, inLength, &temp[versionSize]); | |
} | |
else { | |
os_memmove(&temp[versionSize], &in[versionSize], CX_RIPEMD160_SIZE); | |
} | |
Sha256 hash; | |
hash256(&hash, temp, ripeLength, checksum); | |
hash256(&hash, checksum, CX_SHA256_SIZE, checksum); | |
os_memmove(&temp[ripeLength], checksum, RIPEMD160_TMP_LENGTH); | |
return encodeBase58(temp, ripeLength + RIPEMD160_TMP_LENGTH, out, outLength); | |
} | |
////////////////////////////////////////////////////////////////////// |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment