2019-08-15 23:34:08 +02:00
|
|
|
/*
|
|
|
|
This file is part of GNU Taler
|
|
|
|
(C) 2019 GNUnet e.V.
|
|
|
|
|
|
|
|
TALER is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Synchronous implementation of crypto-related functions for the wallet.
|
2019-11-28 00:46:34 +01:00
|
|
|
*
|
2019-08-15 23:34:08 +02:00
|
|
|
* The functionality is parameterized over an Emscripten environment.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {
|
|
|
|
CoinRecord,
|
|
|
|
CoinStatus,
|
|
|
|
DenominationRecord,
|
|
|
|
PreCoinRecord,
|
|
|
|
RefreshPreCoinRecord,
|
|
|
|
RefreshSessionRecord,
|
|
|
|
ReserveRecord,
|
|
|
|
TipPlanchet,
|
|
|
|
WireFee,
|
|
|
|
} from "../dbTypes";
|
|
|
|
|
|
|
|
import { CoinPaySig, ContractTerms, PaybackRequest } from "../talerTypes";
|
2019-11-28 00:46:34 +01:00
|
|
|
import {
|
|
|
|
BenchmarkResult,
|
|
|
|
CoinWithDenom,
|
|
|
|
PayCoinInfo,
|
|
|
|
Timestamp,
|
|
|
|
} from "../walletTypes";
|
|
|
|
import { canonicalJson, getTalerStampSec } from "../helpers";
|
2019-08-15 23:34:08 +02:00
|
|
|
import { AmountJson } from "../amounts";
|
|
|
|
import * as Amounts from "../amounts";
|
|
|
|
import * as timer from "../timer";
|
2019-11-28 00:46:34 +01:00
|
|
|
import {
|
|
|
|
getRandomBytes,
|
|
|
|
encodeCrock,
|
|
|
|
decodeCrock,
|
|
|
|
createEddsaKeyPair,
|
|
|
|
createBlindingKeySecret,
|
|
|
|
hash,
|
|
|
|
rsaBlind,
|
|
|
|
eddsaVerify,
|
|
|
|
eddsaSign,
|
|
|
|
rsaUnblind,
|
|
|
|
stringToBytes,
|
|
|
|
createHashContext,
|
|
|
|
createEcdheKeyPair,
|
|
|
|
keyExchangeEcdheEddsa,
|
|
|
|
setupRefreshPlanchet,
|
|
|
|
} from "./talerCrypto";
|
|
|
|
import { randomBytes } from "./primitives/nacl-fast";
|
|
|
|
|
|
|
|
enum SignaturePurpose {
|
|
|
|
RESERVE_WITHDRAW = 1200,
|
|
|
|
WALLET_COIN_DEPOSIT = 1201,
|
|
|
|
MASTER_DENOMINATION_KEY_VALIDITY = 1025,
|
|
|
|
WALLET_COIN_MELT = 1202,
|
|
|
|
TEST = 4242,
|
|
|
|
MERCHANT_PAYMENT_OK = 1104,
|
|
|
|
MASTER_WIRE_FEES = 1028,
|
|
|
|
WALLET_COIN_PAYBACK = 1203,
|
|
|
|
WALLET_COIN_LINK = 1204,
|
|
|
|
}
|
|
|
|
|
|
|
|
function amountToBuffer(amount: AmountJson): Uint8Array {
|
|
|
|
const buffer = new ArrayBuffer(8 + 4 + 12);
|
|
|
|
const dvbuf = new DataView(buffer);
|
|
|
|
const u8buf = new Uint8Array(buffer);
|
|
|
|
const te = new TextEncoder();
|
|
|
|
const curr = te.encode(amount.currency);
|
|
|
|
dvbuf.setBigUint64(0, BigInt(amount.value));
|
|
|
|
dvbuf.setUint32(8, amount.fraction);
|
|
|
|
u8buf.set(curr, 8 + 4);
|
|
|
|
|
|
|
|
return u8buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
function timestampToBuffer(ts: Timestamp): Uint8Array {
|
|
|
|
const b = new ArrayBuffer(8);
|
|
|
|
const v = new DataView(b);
|
|
|
|
const s = BigInt(ts.t_ms) * BigInt(1000);
|
|
|
|
v.setBigUint64(0, s);
|
|
|
|
return new Uint8Array(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
function talerTimestampStringToBuffer(ts: string): Uint8Array {
|
|
|
|
const t_sec = getTalerStampSec(ts);
|
|
|
|
if (t_sec === null || t_sec === undefined) {
|
|
|
|
// Should have been validated before!
|
|
|
|
throw Error("invalid timestamp");
|
|
|
|
}
|
|
|
|
const buffer = new ArrayBuffer(8);
|
|
|
|
const dvbuf = new DataView(buffer);
|
|
|
|
const s = BigInt(t_sec) * BigInt(1000 * 1000);
|
|
|
|
dvbuf.setBigUint64(0, s);
|
|
|
|
return new Uint8Array(buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
class SignaturePurposeBuilder {
|
|
|
|
private chunks: Uint8Array[] = [];
|
|
|
|
|
|
|
|
constructor(private purposeNum: number) {}
|
|
|
|
|
|
|
|
put(bytes: Uint8Array): SignaturePurposeBuilder {
|
|
|
|
this.chunks.push(Uint8Array.from(bytes));
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
build(): Uint8Array {
|
|
|
|
let payloadLen = 0;
|
|
|
|
for (let c of this.chunks) {
|
|
|
|
payloadLen += c.byteLength;
|
|
|
|
}
|
|
|
|
const buf = new ArrayBuffer(4 + 4 + payloadLen);
|
|
|
|
const u8buf = new Uint8Array(buf);
|
|
|
|
let p = 8;
|
|
|
|
for (let c of this.chunks) {
|
|
|
|
u8buf.set(c, p);
|
|
|
|
p += c.byteLength;
|
|
|
|
}
|
|
|
|
const dvbuf = new DataView(buf);
|
|
|
|
dvbuf.setUint32(0, payloadLen + 4 + 4);
|
|
|
|
dvbuf.setUint32(4, this.purposeNum);
|
|
|
|
return u8buf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function buildSigPS(purposeNum: number): SignaturePurposeBuilder {
|
|
|
|
return new SignaturePurposeBuilder(purposeNum);
|
|
|
|
}
|
2019-08-15 23:34:08 +02:00
|
|
|
|
|
|
|
export class CryptoImplementation {
|
|
|
|
static enableTracing: boolean = false;
|
|
|
|
|
2019-11-28 00:46:34 +01:00
|
|
|
constructor() {}
|
2019-08-15 23:34:08 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a pre-coin of the given denomination to be withdrawn from then given
|
|
|
|
* reserve.
|
|
|
|
*/
|
|
|
|
createPreCoin(
|
|
|
|
denom: DenominationRecord,
|
|
|
|
reserve: ReserveRecord,
|
|
|
|
): PreCoinRecord {
|
2019-11-28 00:46:34 +01:00
|
|
|
const reservePub = decodeCrock(reserve.reservePub);
|
|
|
|
const reservePriv = decodeCrock(reserve.reservePriv);
|
|
|
|
const denomPub = decodeCrock(denom.denomPub);
|
|
|
|
const coinKeyPair = createEddsaKeyPair();
|
|
|
|
const blindingFactor = createBlindingKeySecret();
|
|
|
|
const coinPubHash = hash(coinKeyPair.eddsaPub);
|
|
|
|
const ev = rsaBlind(coinPubHash, blindingFactor, denomPub);
|
|
|
|
const amountWithFee = Amounts.add(denom.value, denom.feeWithdraw).amount;
|
|
|
|
const denomPubHash = hash(denomPub);
|
|
|
|
const evHash = hash(ev);
|
|
|
|
|
|
|
|
const withdrawRequest = buildSigPS(SignaturePurpose.RESERVE_WITHDRAW)
|
|
|
|
.put(reservePub)
|
|
|
|
.put(amountToBuffer(amountWithFee))
|
|
|
|
.put(amountToBuffer(denom.feeWithdraw))
|
|
|
|
.put(denomPubHash)
|
|
|
|
.put(evHash)
|
|
|
|
.build();
|
|
|
|
|
|
|
|
const sig = eddsaSign(withdrawRequest, reservePriv);
|
2019-08-15 23:34:08 +02:00
|
|
|
|
|
|
|
const preCoin: PreCoinRecord = {
|
2019-11-28 00:46:34 +01:00
|
|
|
blindingKey: encodeCrock(blindingFactor),
|
|
|
|
coinEv: encodeCrock(ev),
|
|
|
|
coinPriv: encodeCrock(coinKeyPair.eddsaPriv),
|
|
|
|
coinPub: encodeCrock(coinKeyPair.eddsaPub),
|
2019-08-15 23:34:08 +02:00
|
|
|
coinValue: denom.value,
|
2019-11-28 00:46:34 +01:00
|
|
|
denomPub: encodeCrock(denomPub),
|
|
|
|
denomPubHash: encodeCrock(denomPubHash),
|
2019-11-21 23:09:43 +01:00
|
|
|
exchangeBaseUrl: reserve.exchangeBaseUrl,
|
2019-08-15 23:34:08 +02:00
|
|
|
isFromTip: false,
|
2019-11-28 00:46:34 +01:00
|
|
|
reservePub: encodeCrock(reservePub),
|
|
|
|
withdrawSig: encodeCrock(sig),
|
2019-08-15 23:34:08 +02:00
|
|
|
};
|
|
|
|
return preCoin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a planchet used for tipping, including the private keys.
|
|
|
|
*/
|
|
|
|
createTipPlanchet(denom: DenominationRecord): TipPlanchet {
|
2019-11-28 00:46:34 +01:00
|
|
|
const denomPub = decodeCrock(denom.denomPub);
|
|
|
|
const coinKeyPair = createEddsaKeyPair();
|
|
|
|
const blindingFactor = createBlindingKeySecret();
|
|
|
|
const coinPubHash = hash(coinKeyPair.eddsaPub);
|
|
|
|
const ev = rsaBlind(coinPubHash, blindingFactor, denomPub);
|
2019-08-15 23:34:08 +02:00
|
|
|
|
|
|
|
const tipPlanchet: TipPlanchet = {
|
2019-11-28 00:46:34 +01:00
|
|
|
blindingKey: encodeCrock(blindingFactor),
|
|
|
|
coinEv: encodeCrock(ev),
|
|
|
|
coinPriv: encodeCrock(coinKeyPair.eddsaPriv),
|
|
|
|
coinPub: encodeCrock(coinKeyPair.eddsaPub),
|
2019-08-15 23:34:08 +02:00
|
|
|
coinValue: denom.value,
|
2019-11-28 00:46:34 +01:00
|
|
|
denomPub: encodeCrock(denomPub),
|
|
|
|
denomPubHash: encodeCrock(hash(denomPub)),
|
2019-08-15 23:34:08 +02:00
|
|
|
};
|
|
|
|
return tipPlanchet;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create and sign a message to request payback for a coin.
|
|
|
|
*/
|
|
|
|
createPaybackRequest(coin: CoinRecord): PaybackRequest {
|
2019-11-28 00:46:34 +01:00
|
|
|
const p = buildSigPS(SignaturePurpose.WALLET_COIN_PAYBACK)
|
|
|
|
.put(decodeCrock(coin.coinPub))
|
|
|
|
.put(decodeCrock(coin.denomPubHash))
|
|
|
|
.put(decodeCrock(coin.blindingKey))
|
|
|
|
.build();
|
|
|
|
|
|
|
|
const coinPriv = decodeCrock(coin.coinPriv);
|
|
|
|
const coinSig = eddsaSign(p, coinPriv);
|
2019-08-15 23:34:08 +02:00
|
|
|
const paybackRequest: PaybackRequest = {
|
|
|
|
coin_blind_key_secret: coin.blindingKey,
|
|
|
|
coin_pub: coin.coinPub,
|
2019-11-28 00:46:34 +01:00
|
|
|
coin_sig: encodeCrock(coinSig),
|
2019-08-15 23:34:08 +02:00
|
|
|
denom_pub: coin.denomPub,
|
|
|
|
denom_sig: coin.denomSig,
|
|
|
|
};
|
|
|
|
return paybackRequest;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if a payment signature is valid.
|
|
|
|
*/
|
|
|
|
isValidPaymentSignature(
|
|
|
|
sig: string,
|
|
|
|
contractHash: string,
|
|
|
|
merchantPub: string,
|
|
|
|
): boolean {
|
2019-11-28 00:46:34 +01:00
|
|
|
const p = buildSigPS(SignaturePurpose.MERCHANT_PAYMENT_OK)
|
|
|
|
.put(decodeCrock(contractHash))
|
|
|
|
.build();
|
|
|
|
const sigBytes = decodeCrock(sig);
|
|
|
|
const pubBytes = decodeCrock(merchantPub);
|
|
|
|
return eddsaVerify(p, sigBytes, pubBytes);
|
2019-08-15 23:34:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if a wire fee is correctly signed.
|
|
|
|
*/
|
|
|
|
isValidWireFee(type: string, wf: WireFee, masterPub: string): boolean {
|
2019-11-28 00:46:34 +01:00
|
|
|
const p = buildSigPS(SignaturePurpose.MASTER_WIRE_FEES)
|
|
|
|
.put(hash(stringToBytes(type + "\0")))
|
|
|
|
.put(timestampToBuffer(wf.startStamp))
|
|
|
|
.put(timestampToBuffer(wf.endStamp))
|
|
|
|
.put(amountToBuffer(wf.wireFee))
|
|
|
|
.build();
|
|
|
|
const sig = decodeCrock(wf.sig);
|
|
|
|
const pub = decodeCrock(masterPub);
|
|
|
|
return eddsaVerify(p, sig, pub);
|
2019-08-15 23:34:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the signature of a denomination is valid.
|
|
|
|
*/
|
|
|
|
isValidDenom(denom: DenominationRecord, masterPub: string): boolean {
|
2019-11-28 00:46:34 +01:00
|
|
|
const p = buildSigPS(SignaturePurpose.MASTER_DENOMINATION_KEY_VALIDITY)
|
|
|
|
.put(decodeCrock(masterPub))
|
|
|
|
.put(timestampToBuffer(denom.stampStart))
|
|
|
|
.put(timestampToBuffer(denom.stampExpireWithdraw))
|
|
|
|
.put(timestampToBuffer(denom.stampExpireDeposit))
|
|
|
|
.put(timestampToBuffer(denom.stampExpireLegal))
|
|
|
|
.put(amountToBuffer(denom.value))
|
|
|
|
.put(amountToBuffer(denom.feeWithdraw))
|
|
|
|
.put(amountToBuffer(denom.feeDeposit))
|
|
|
|
.put(amountToBuffer(denom.feeRefresh))
|
|
|
|
.put(amountToBuffer(denom.feeRefund))
|
|
|
|
.put(decodeCrock(denom.denomPubHash))
|
|
|
|
.build();
|
|
|
|
const sig = decodeCrock(denom.masterSig);
|
|
|
|
const pub = decodeCrock(masterPub);
|
|
|
|
return eddsaVerify(p, sig, pub);
|
2019-08-15 23:34:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new EdDSA key pair.
|
|
|
|
*/
|
|
|
|
createEddsaKeypair(): { priv: string; pub: string } {
|
2019-11-28 00:46:34 +01:00
|
|
|
const pair = createEddsaKeyPair();
|
|
|
|
return {
|
|
|
|
priv: encodeCrock(pair.eddsaPriv),
|
|
|
|
pub: encodeCrock(pair.eddsaPub),
|
|
|
|
};
|
2019-08-15 23:34:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unblind a blindly signed value.
|
|
|
|
*/
|
|
|
|
rsaUnblind(sig: string, bk: string, pk: string): string {
|
2019-11-28 00:46:34 +01:00
|
|
|
const denomSig = rsaUnblind(
|
|
|
|
decodeCrock(sig),
|
|
|
|
decodeCrock(pk),
|
|
|
|
decodeCrock(bk),
|
2019-08-15 23:34:08 +02:00
|
|
|
);
|
2019-11-28 00:46:34 +01:00
|
|
|
return encodeCrock(denomSig);
|
2019-08-15 23:34:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate updated coins (to store in the database)
|
|
|
|
* and deposit permissions for each given coin.
|
|
|
|
*/
|
|
|
|
signDeposit(
|
|
|
|
contractTerms: ContractTerms,
|
|
|
|
cds: CoinWithDenom[],
|
|
|
|
totalAmount: AmountJson,
|
|
|
|
): PayCoinInfo {
|
|
|
|
const ret: PayCoinInfo = {
|
|
|
|
originalCoins: [],
|
|
|
|
sigs: [],
|
|
|
|
updatedCoins: [],
|
|
|
|
};
|
|
|
|
|
|
|
|
const contractTermsHash = this.hashString(canonicalJson(contractTerms));
|
|
|
|
|
|
|
|
const feeList: AmountJson[] = cds.map(x => x.denom.feeDeposit);
|
|
|
|
let fees = Amounts.add(Amounts.getZero(feeList[0].currency), ...feeList)
|
|
|
|
.amount;
|
|
|
|
// okay if saturates
|
|
|
|
fees = Amounts.sub(fees, Amounts.parseOrThrow(contractTerms.max_fee))
|
|
|
|
.amount;
|
|
|
|
const total = Amounts.add(fees, totalAmount).amount;
|
|
|
|
|
2019-11-28 00:46:34 +01:00
|
|
|
let amountSpent = Amounts.getZero(cds[0].coin.currentAmount.currency);
|
|
|
|
let amountRemaining = total;
|
|
|
|
|
2019-08-15 23:34:08 +02:00
|
|
|
for (const cd of cds) {
|
|
|
|
const originalCoin = { ...cd.coin };
|
|
|
|
|
|
|
|
if (amountRemaining.value === 0 && amountRemaining.fraction === 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-11-28 00:46:34 +01:00
|
|
|
let coinSpend: AmountJson;
|
|
|
|
if (Amounts.cmp(amountRemaining, cd.coin.currentAmount) < 0) {
|
|
|
|
coinSpend = amountRemaining;
|
2019-08-15 23:34:08 +02:00
|
|
|
} else {
|
2019-11-28 00:46:34 +01:00
|
|
|
coinSpend = cd.coin.currentAmount;
|
2019-08-15 23:34:08 +02:00
|
|
|
}
|
|
|
|
|
2019-11-28 00:46:34 +01:00
|
|
|
amountSpent = Amounts.add(amountSpent, coinSpend).amount;
|
2019-08-15 23:34:08 +02:00
|
|
|
|
2019-11-28 00:46:34 +01:00
|
|
|
const feeDeposit = cd.denom.feeDeposit;
|
2019-08-15 23:34:08 +02:00
|
|
|
|
|
|
|
// Give the merchant at least the deposit fee, otherwise it'll reject
|
|
|
|
// the coin.
|
2019-11-28 00:46:34 +01:00
|
|
|
|
|
|
|
if (Amounts.cmp(coinSpend, feeDeposit) < 0) {
|
2019-08-15 23:34:08 +02:00
|
|
|
coinSpend = feeDeposit;
|
|
|
|
}
|
|
|
|
|
2019-11-28 00:46:34 +01:00
|
|
|
const newAmount = Amounts.sub(cd.coin.currentAmount, coinSpend).amount;
|
|
|
|
cd.coin.currentAmount = newAmount;
|
2019-11-21 23:09:43 +01:00
|
|
|
cd.coin.status = CoinStatus.Dirty;
|
2019-08-15 23:34:08 +02:00
|
|
|
|
2019-11-28 00:46:34 +01:00
|
|
|
const d = buildSigPS(SignaturePurpose.WALLET_COIN_DEPOSIT)
|
|
|
|
.put(decodeCrock(contractTermsHash))
|
|
|
|
.put(decodeCrock(contractTerms.H_wire))
|
|
|
|
.put(talerTimestampStringToBuffer(contractTerms.timestamp))
|
|
|
|
.put(talerTimestampStringToBuffer(contractTerms.refund_deadline))
|
|
|
|
.put(amountToBuffer(coinSpend))
|
|
|
|
.put(amountToBuffer(cd.denom.feeDeposit))
|
|
|
|
.put(decodeCrock(contractTerms.merchant_pub))
|
|
|
|
.put(decodeCrock(cd.coin.coinPub))
|
|
|
|
.build();
|
|
|
|
const coinSig = eddsaSign(d, decodeCrock(cd.coin.coinPriv));
|
2019-08-15 23:34:08 +02:00
|
|
|
|
|
|
|
const s: CoinPaySig = {
|
|
|
|
coin_pub: cd.coin.coinPub,
|
2019-11-28 00:46:34 +01:00
|
|
|
coin_sig: encodeCrock(coinSig),
|
|
|
|
contribution: Amounts.toString(coinSpend),
|
2019-08-15 23:34:08 +02:00
|
|
|
denom_pub: cd.coin.denomPub,
|
|
|
|
exchange_url: cd.denom.exchangeBaseUrl,
|
|
|
|
ub_sig: cd.coin.denomSig,
|
|
|
|
};
|
|
|
|
ret.sigs.push(s);
|
|
|
|
ret.updatedCoins.push(cd.coin);
|
|
|
|
ret.originalCoins.push(originalCoin);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new refresh session.
|
|
|
|
*/
|
|
|
|
createRefreshSession(
|
|
|
|
exchangeBaseUrl: string,
|
|
|
|
kappa: number,
|
|
|
|
meltCoin: CoinRecord,
|
|
|
|
newCoinDenoms: DenominationRecord[],
|
|
|
|
meltFee: AmountJson,
|
|
|
|
): RefreshSessionRecord {
|
|
|
|
let valueWithFee = Amounts.getZero(newCoinDenoms[0].value.currency);
|
|
|
|
|
|
|
|
for (const ncd of newCoinDenoms) {
|
|
|
|
valueWithFee = Amounts.add(valueWithFee, ncd.value, ncd.feeWithdraw)
|
|
|
|
.amount;
|
|
|
|
}
|
|
|
|
|
|
|
|
// melt fee
|
|
|
|
valueWithFee = Amounts.add(valueWithFee, meltFee).amount;
|
|
|
|
|
2019-11-28 00:46:34 +01:00
|
|
|
const sessionHc = createHashContext();
|
2019-08-15 23:34:08 +02:00
|
|
|
|
|
|
|
const transferPubs: string[] = [];
|
|
|
|
const transferPrivs: string[] = [];
|
|
|
|
|
|
|
|
const preCoinsForGammas: RefreshPreCoinRecord[][] = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < kappa; i++) {
|
2019-11-28 00:46:34 +01:00
|
|
|
const transferKeyPair = createEcdheKeyPair();
|
|
|
|
sessionHc.update(transferKeyPair.ecdhePub);
|
|
|
|
transferPrivs.push(encodeCrock(transferKeyPair.ecdhePriv));
|
|
|
|
transferPubs.push(encodeCrock(transferKeyPair.ecdhePub));
|
2019-08-15 23:34:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (const denom of newCoinDenoms) {
|
2019-11-28 00:46:34 +01:00
|
|
|
const r = decodeCrock(denom.denomPub);
|
|
|
|
sessionHc.update(r);
|
2019-08-15 23:34:08 +02:00
|
|
|
}
|
|
|
|
|
2019-11-28 00:46:34 +01:00
|
|
|
sessionHc.update(decodeCrock(meltCoin.coinPub));
|
|
|
|
sessionHc.update(amountToBuffer(valueWithFee));
|
2019-08-15 23:34:08 +02:00
|
|
|
|
|
|
|
for (let i = 0; i < kappa; i++) {
|
|
|
|
const preCoins: RefreshPreCoinRecord[] = [];
|
|
|
|
for (let j = 0; j < newCoinDenoms.length; j++) {
|
2019-11-28 00:46:34 +01:00
|
|
|
const transferPriv = decodeCrock(transferPrivs[i]);
|
|
|
|
const oldCoinPub = decodeCrock(meltCoin.coinPub);
|
|
|
|
const transferSecret = keyExchangeEcdheEddsa(transferPriv, oldCoinPub);
|
|
|
|
|
|
|
|
const fresh = setupRefreshPlanchet(transferSecret, j);
|
|
|
|
|
|
|
|
const coinPriv = fresh.coinPriv;
|
|
|
|
const coinPub = fresh.coinPub;
|
|
|
|
const blindingFactor = fresh.bks;
|
|
|
|
const pubHash = hash(coinPub);
|
|
|
|
const denomPub = decodeCrock(newCoinDenoms[j].denomPub);
|
|
|
|
const ev = rsaBlind(pubHash, blindingFactor, denomPub);
|
2019-08-15 23:34:08 +02:00
|
|
|
const preCoin: RefreshPreCoinRecord = {
|
2019-11-28 00:46:34 +01:00
|
|
|
blindingKey: encodeCrock(blindingFactor),
|
|
|
|
coinEv: encodeCrock(ev),
|
|
|
|
privateKey: encodeCrock(coinPriv),
|
|
|
|
publicKey: encodeCrock(coinPub),
|
2019-08-15 23:34:08 +02:00
|
|
|
};
|
|
|
|
preCoins.push(preCoin);
|
2019-11-28 00:46:34 +01:00
|
|
|
sessionHc.update(ev);
|
2019-08-15 23:34:08 +02:00
|
|
|
}
|
|
|
|
preCoinsForGammas.push(preCoins);
|
|
|
|
}
|
|
|
|
|
2019-11-28 00:46:34 +01:00
|
|
|
const sessionHash = sessionHc.finish();
|
2019-08-15 23:34:08 +02:00
|
|
|
|
2019-11-28 00:46:34 +01:00
|
|
|
const confirmData = buildSigPS(SignaturePurpose.WALLET_COIN_MELT)
|
|
|
|
.put(sessionHash)
|
|
|
|
.put(amountToBuffer(valueWithFee))
|
|
|
|
.put(amountToBuffer(meltFee))
|
|
|
|
.put(decodeCrock(meltCoin.coinPub))
|
|
|
|
.build();
|
2019-08-15 23:34:08 +02:00
|
|
|
|
2019-11-28 00:46:34 +01:00
|
|
|
const confirmSig = eddsaSign(confirmData, decodeCrock(meltCoin.coinPriv));
|
2019-08-15 23:34:08 +02:00
|
|
|
|
|
|
|
let valueOutput = Amounts.getZero(newCoinDenoms[0].value.currency);
|
|
|
|
for (const denom of newCoinDenoms) {
|
|
|
|
valueOutput = Amounts.add(valueOutput, denom.value).amount;
|
|
|
|
}
|
|
|
|
|
2019-11-21 23:09:43 +01:00
|
|
|
const refreshSessionId = encodeCrock(getRandomBytes(32));
|
|
|
|
|
2019-08-15 23:34:08 +02:00
|
|
|
const refreshSession: RefreshSessionRecord = {
|
2019-11-21 23:09:43 +01:00
|
|
|
refreshSessionId,
|
2019-11-28 00:46:34 +01:00
|
|
|
confirmSig: encodeCrock(confirmSig),
|
2019-08-15 23:34:08 +02:00
|
|
|
exchangeBaseUrl,
|
|
|
|
finished: false,
|
2019-11-28 00:46:34 +01:00
|
|
|
hash: encodeCrock(sessionHash),
|
2019-08-15 23:34:08 +02:00
|
|
|
meltCoinPub: meltCoin.coinPub,
|
|
|
|
newDenomHashes: newCoinDenoms.map(d => d.denomPubHash),
|
|
|
|
newDenoms: newCoinDenoms.map(d => d.denomPub),
|
|
|
|
norevealIndex: undefined,
|
|
|
|
preCoinsForGammas,
|
|
|
|
transferPrivs,
|
|
|
|
transferPubs,
|
|
|
|
valueOutput,
|
|
|
|
valueWithFee,
|
|
|
|
};
|
|
|
|
|
|
|
|
return refreshSession;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hash a string including the zero terminator.
|
|
|
|
*/
|
|
|
|
hashString(str: string): string {
|
2019-11-28 00:46:34 +01:00
|
|
|
const ts = new TextEncoder();
|
|
|
|
const b = ts.encode(str + "\0");
|
|
|
|
return encodeCrock(hash(b));
|
2019-08-15 23:34:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hash a denomination public key.
|
|
|
|
*/
|
|
|
|
hashDenomPub(denomPub: string): string {
|
2019-11-28 00:46:34 +01:00
|
|
|
return encodeCrock(hash(decodeCrock(denomPub)));
|
2019-08-15 23:34:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
signCoinLink(
|
|
|
|
oldCoinPriv: string,
|
|
|
|
newDenomHash: string,
|
|
|
|
oldCoinPub: string,
|
|
|
|
transferPub: string,
|
|
|
|
coinEv: string,
|
|
|
|
): string {
|
2019-11-28 00:46:34 +01:00
|
|
|
const coinEvHash = hash(decodeCrock(coinEv));
|
|
|
|
const coinLink = buildSigPS(SignaturePurpose.WALLET_COIN_LINK)
|
|
|
|
.put(decodeCrock(newDenomHash))
|
|
|
|
.put(decodeCrock(oldCoinPub))
|
|
|
|
.put(decodeCrock(transferPub))
|
|
|
|
.put(coinEvHash)
|
|
|
|
.build();
|
|
|
|
const coinPriv = decodeCrock(oldCoinPriv);
|
|
|
|
const sig = eddsaSign(coinLink, coinPriv);
|
|
|
|
return encodeCrock(sig);
|
2019-08-15 23:34:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
benchmark(repetitions: number): BenchmarkResult {
|
|
|
|
let time_hash = 0;
|
|
|
|
for (let i = 0; i < repetitions; i++) {
|
|
|
|
const start = timer.performanceNow();
|
|
|
|
this.hashString("hello world");
|
|
|
|
time_hash += timer.performanceNow() - start;
|
|
|
|
}
|
|
|
|
|
|
|
|
let time_hash_big = 0;
|
|
|
|
for (let i = 0; i < repetitions; i++) {
|
2019-11-28 00:46:34 +01:00
|
|
|
const ba = randomBytes(4096);
|
2019-08-15 23:34:08 +02:00
|
|
|
const start = timer.performanceNow();
|
2019-11-28 00:46:34 +01:00
|
|
|
hash(ba);
|
2019-08-15 23:34:08 +02:00
|
|
|
time_hash_big += timer.performanceNow() - start;
|
|
|
|
}
|
|
|
|
|
|
|
|
let time_eddsa_create = 0;
|
|
|
|
for (let i = 0; i < repetitions; i++) {
|
|
|
|
const start = timer.performanceNow();
|
2019-11-28 00:46:34 +01:00
|
|
|
const pair = createEddsaKeyPair();
|
2019-08-15 23:34:08 +02:00
|
|
|
time_eddsa_create += timer.performanceNow() - start;
|
|
|
|
}
|
|
|
|
|
|
|
|
let time_eddsa_sign = 0;
|
2019-11-28 00:46:34 +01:00
|
|
|
const p = randomBytes(4096);
|
2019-08-15 23:34:08 +02:00
|
|
|
|
2019-11-28 00:46:34 +01:00
|
|
|
const pair = createEddsaKeyPair();
|
2019-08-15 23:34:08 +02:00
|
|
|
|
|
|
|
for (let i = 0; i < repetitions; i++) {
|
|
|
|
const start = timer.performanceNow();
|
2019-11-28 00:46:34 +01:00
|
|
|
eddsaSign(p, pair.eddsaPriv);
|
2019-08-15 23:34:08 +02:00
|
|
|
time_eddsa_sign += timer.performanceNow() - start;
|
|
|
|
}
|
|
|
|
|
2019-11-28 00:46:34 +01:00
|
|
|
const sig = eddsaSign(p, pair.eddsaPriv);
|
2019-08-15 23:34:08 +02:00
|
|
|
|
|
|
|
let time_eddsa_verify = 0;
|
|
|
|
for (let i = 0; i < repetitions; i++) {
|
|
|
|
const start = timer.performanceNow();
|
2019-11-28 00:46:34 +01:00
|
|
|
eddsaVerify(p, sig, pair.eddsaPub);
|
2019-08-15 23:34:08 +02:00
|
|
|
time_eddsa_verify += timer.performanceNow() - start;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
repetitions,
|
|
|
|
time: {
|
|
|
|
hash_small: time_hash,
|
|
|
|
hash_big: time_hash_big,
|
|
|
|
eddsa_create: time_eddsa_create,
|
|
|
|
eddsa_sign: time_eddsa_sign,
|
|
|
|
eddsa_verify: time_eddsa_verify,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|