summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-10-19 23:49:11 +0200
committerFlorian Dold <florian@dold.me>2021-10-19 23:49:11 +0200
commitc3570484a8e2cd342d274e8cdb4ea0fe41c8de50 (patch)
tree9cf1c745bdd39893e61233652ba725f6ce0eb7b3
parent6c5d32be7458a6423b8a2b0ab8c3002394620f14 (diff)
downloadwallet-core-c3570484a8e2cd342d274e8cdb4ea0fe41c8de50.tar.gz
wallet-core-c3570484a8e2cd342d274e8cdb4ea0fe41c8de50.tar.bz2
wallet-core-c3570484a8e2cd342d274e8cdb4ea0fe41c8de50.zip
anastasis-core: fix recovery document generation
-rw-r--r--packages/anastasis-core/src/index.ts33
1 files changed, 16 insertions, 17 deletions
diff --git a/packages/anastasis-core/src/index.ts b/packages/anastasis-core/src/index.ts
index 2909cf619..c99bd5b44 100644
--- a/packages/anastasis-core/src/index.ts
+++ b/packages/anastasis-core/src/index.ts
@@ -417,7 +417,7 @@ async function getTruthValue(
case "email":
case "totp":
case "iban":
- return encodeCrock(stringToBytes(authMethod.type));
+ return authMethod.challenge;
default:
throw Error("unknown auth type");
}
@@ -429,7 +429,6 @@ async function getTruthValue(
async function compressRecoveryDoc(rd: any): Promise<Uint8Array> {
console.log("recovery document", rd);
const docBytes = stringToBytes(JSON.stringify(rd));
- console.log("plain doc length", docBytes.length);
const sizeHeaderBuf = new ArrayBuffer(4);
const dvbuf = new DataView(sizeHeaderBuf);
dvbuf.setUint32(0, docBytes.length, false);
@@ -461,22 +460,21 @@ async function uploadSecret(
for (let methIndex = 0; methIndex < pol.methods.length; methIndex++) {
const meth = pol.methods[methIndex];
const truthReference = `${meth.authentication_method}:${meth.provider}`;
- if (truthMetadataMap[truthReference]) {
- continue;
+ let tm = truthMetadataMap[truthReference];
+ if (!tm) {
+ tm = {
+ key_share: encodeCrock(getRandomBytes(32)),
+ nonce: encodeCrock(getRandomBytes(24)),
+ truth_salt: encodeCrock(getRandomBytes(16)),
+ truth_key: encodeCrock(getRandomBytes(64)),
+ uuid: encodeCrock(getRandomBytes(32)),
+ pol_method_index: methIndex,
+ policy_index: policyIndex,
+ };
+ truthMetadataMap[truthReference] = tm;
}
- const keyShare = encodeCrock(getRandomBytes(32));
- keyShares.push(keyShare);
- const tm: TruthMetaData = {
- key_share: keyShare,
- nonce: encodeCrock(getRandomBytes(24)),
- truth_salt: encodeCrock(getRandomBytes(16)),
- truth_key: encodeCrock(getRandomBytes(64)),
- uuid: encodeCrock(getRandomBytes(32)),
- pol_method_index: methIndex,
- policy_index: policyIndex,
- };
+ keyShares.push(tm.key_share);
methUuids.push(tm.uuid);
- truthMetadataMap[truthReference] = tm;
}
const policyKey = await policyKeyDerive(keyShares, policySalt);
policyUuids.push(methUuids);
@@ -563,6 +561,8 @@ async function uploadSecret(
// the state, since it's possible that we'll run into
// a provider that requests a payment.
+ console.log("policy UUIDs", policyUuids);
+
const rd: RecoveryDocument = {
secret_name: secretName,
encrypted_core_secret: csr.encCoreSecret,
@@ -582,7 +582,6 @@ async function uploadSecret(
const uid = uidMap[prov.provider_url];
const acctKeypair = accountKeypairDerive(uid);
const zippedDoc = await compressRecoveryDoc(rd);
- console.log("zipped doc", zippedDoc);
const encRecoveryDoc = await encryptRecoveryDocument(
uid,
encodeCrock(zippedDoc),