4meta5 / consensus

blockchain consensus research
3 stars 0 forks source link

Verifiable Delay Functions #4

Open 4meta5 opened 5 years ago

4meta5 commented 5 years ago

This is an emerging cryptographic primitive common to modern consensus protocols.

metalink

4meta5 commented 5 years ago

Verifiable Delay Functions from Supersingular Isogenies

python impl of a note on ...

4meta5 commented 5 years ago

Continuous Verifiable Delay Functions VDFs let someone quickly check that you ran a slow function n times. But checking a sequence of (n runs->proof->m run->proof) was twice as hard. cVDFs fix this while still using an efficient RSA construction. src

It's an interesting adjustment to Pietrzak's proof, and final section is interesting, but an isogenies VDF gives this for free. And you can optimize arithmetic for a bespoke 1500 bit prime way easier than for an RSA modulus. ~ jeff burdge's response

4meta5 commented 5 years ago

...use in BABE

Abstractions from the rust filecoin proofs are also interesting