youtube image
From YouTube: TokenScript Weekly Meeting 20200611

Description

00:10:49 hboon: https://github.com/AlphaWallet/alpha-wallet-ios/blob/master/AlphaWallet/Browser/Factory/WKWebViewConfiguration.swift#L102
00:14:56 hboon: https://github.com/AlphaWallet/TokenScript-Examples/blob/master/examples/EntryToken/enter.en.js#L32
00:26:16 Tore Frederiksen: https://crypto.stackexchange.com/questions/34863/ec-schnorr-signature-multiple-standard
00:33:23 weiwu: https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/deriveKey
00:35:38 Tore Frederiksen: https://community.tokenscript.org/t/send-with-attestation-and-send-to-attestation-mvp-use-case-of-attestation/309/11
00:38:57 Tore Frederiksen: https://en.wikipedia.org/wiki/Proof_of_knowledge#Schnorr_protocol
00:42:34 Tore Frederiksen: Pick random r, compute t=g^r, compute c=H(t) and return (t, s=r+cx)
00:50:18 Tore Frederiksen: Pick random r, compute t=g^r, compute c=H(t) and return (t, s=r+c(x+delta), delta)
00:51:23 Tore Frederiksen: g^sg^-delta=ty^c
00:52:09 Tore Frederiksen: Pick random r, compute t=g^r, compute c=H(t) and return (t, s=r+c(x+delta), delta, y)g^sg^-c*delta=ty^c
00:52:54 weiwu: memory space of JS.
00:52:59 weiwu: memory space of UA.
00:53:24 weiwu: We have (sk) in the UA which is the subject being proved.
00:53:44 weiwu: We also know that everything the verifier generated and passed to the prover is in JS
00:53:53 Tore Frederiksen: JS: r, t, c, (x+delta)UA:, t, s, delta, x, y