diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-10-14 02:13:06 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-10-14 02:13:06 +0200 |
commit | ab538922312a37da5ee302e34fb72af7a0f8bae7 (patch) | |
tree | b632cbc674d81f9057820098a7ad2996d1203b13 /lib/wallet/cryptoLib.ts | |
parent | 0b198e08888830890622e983445c75f947186b4c (diff) |
working refresh prototype
Diffstat (limited to 'lib/wallet/cryptoLib.ts')
-rw-r--r-- | lib/wallet/cryptoLib.ts | 67 |
1 files changed, 44 insertions, 23 deletions
diff --git a/lib/wallet/cryptoLib.ts b/lib/wallet/cryptoLib.ts index d471b577d..3b9d6d228 100644 --- a/lib/wallet/cryptoLib.ts +++ b/lib/wallet/cryptoLib.ts @@ -30,7 +30,7 @@ import create = chrome.alarms.create; import {Offer} from "./wallet"; import {CoinWithDenom} from "./wallet"; import {CoinPaySig} from "./types"; -import {Denomination} from "./types"; +import {Denomination, Amounts} from "./types"; import {Amount} from "./emscriptif"; import {Coin} from "../../background/lib/wallet/types"; import {HashContext} from "./emscriptif"; @@ -151,11 +151,6 @@ namespace RpcFunctions { } - export function hashString(str: string): string { - const b = native.ByteArray.fromString(str); - return b.hash().toCrock(); - } - export function hashRsaPub(rsaPub: string): string { return native.RsaPublicKey.fromCrock(rsaPub) @@ -238,21 +233,36 @@ namespace RpcFunctions { } - export function createWithdrawSession(kappa: number, meltCoin: Coin, - newCoinDenoms: Denomination[], - meltAmount: AmountJson, - meltFee: AmountJson): RefreshSession { + export function createRefreshSession(exchangeBaseUrl: string, + kappa: number, + meltCoin: Coin, + newCoinDenoms: Denomination[], + meltFee: AmountJson): RefreshSession { + + let valueWithFee = Amounts.getZero(newCoinDenoms[0].value.currency); + + for (let ncd of newCoinDenoms) { + valueWithFee = Amounts.add(valueWithFee, + ncd.value, + ncd.fee_withdraw).amount; + } + + // melt fee + valueWithFee = Amounts.add(valueWithFee, meltFee).amount; let sessionHc = new HashContext(); let transferPubs: string[] = []; + let transferPrivs: string[] = []; let preCoinsForGammas: RefreshPreCoin[][] = []; - for (let i = 0; i < newCoinDenoms.length; i++) { - let t = native.EcdsaPrivateKey.create(); - sessionHc.read(t); - transferPubs.push(t.toCrock()); + for (let i = 0; i < kappa; i++) { + let t = native.EcdhePrivateKey.create(); + let pub = t.getPublicKey(); + sessionHc.read(pub); + transferPrivs.push(t.toCrock()); + transferPubs.push(pub.toCrock()); } for (let i = 0; i < newCoinDenoms.length; i++) { @@ -260,18 +270,24 @@ namespace RpcFunctions { sessionHc.read(r.encode()); } - sessionHc.read(native.RsaPublicKey.fromCrock(meltCoin.coinPub).encode()); - sessionHc.read((new native.Amount(meltAmount)).toNbo()); + sessionHc.read(native.EddsaPublicKey.fromCrock(meltCoin.coinPub)); + sessionHc.read((new native.Amount(valueWithFee)).toNbo()); - for (let j = 0; j < kappa; j++) { + for (let i = 0; i < kappa; i++) { let preCoins: RefreshPreCoin[] = []; - for (let i = 0; i < newCoinDenoms.length; i++) { + for (let j = 0; j < newCoinDenoms.length; j++) { + + let transferPriv = native.EcdhePrivateKey.fromCrock(transferPrivs[i]); + let oldCoinPub = native.EddsaPublicKey.fromCrock(meltCoin.coinPub); + let transferSecret = native.ecdhEddsa(transferPriv, oldCoinPub); - let coinPriv = native.EddsaPrivateKey.create(); + let fresh = native.setupFreshCoin(transferSecret, j); + + let coinPriv = fresh.priv; let coinPub = coinPriv.getPublicKey(); - let blindingFactor = native.RsaBlindingKeySecret.create(); + let blindingFactor = fresh.blindingKey; let pubHash: native.HashCode = coinPub.hash(); - let denomPub = native.RsaPublicKey.fromCrock(newCoinDenoms[i].denom_pub); + let denomPub = native.RsaPublicKey.fromCrock(newCoinDenoms[j].denom_pub); let ev = native.rsaBlind(pubHash, blindingFactor, denomPub); @@ -296,11 +312,12 @@ namespace RpcFunctions { let confirmData = new RefreshMeltCoinAffirmationPS({ coin_pub: EddsaPublicKey.fromCrock(meltCoin.coinPub), - amount_with_fee: (new Amount(meltAmount)).toNbo(), + amount_with_fee: (new Amount(valueWithFee)).toNbo(), session_hash: sessionHash, melt_fee: (new Amount(meltFee)).toNbo() }); + let confirmSig: string = native.eddsaSign(confirmData.toPurpose(), native.EddsaPrivateKey.fromCrock( meltCoin.coinPriv)).toCrock(); @@ -309,9 +326,13 @@ namespace RpcFunctions { meltCoinPub: meltCoin.coinPub, newDenoms: newCoinDenoms.map((d) => d.denom_pub), confirmSig, - valueWithFee: meltAmount, + valueWithFee, transferPubs, preCoinsForGammas, + hash: sessionHash.toCrock(), + norevealIndex: undefined, + exchangeBaseUrl, + transferPrivs, }; return refreshSession; |