Questions tagged [sqrl]

Proposing a comprehensive, easy-to-use, high security replacement for usernames, passwords, reminders, one-time-code authenticators . . . and everything else.

2 questions
25
votes
6 answers

What implementions of Ed25519 exist?

The new SQRL authentication scheme relies on Curve Ed25519 encryption developed by Daniel Bernstein. However, in order to start implementing this scheme there needs to be a mature implementation of Curve Ed25519 first. Does anyone know of any…
Chris Pietschmann
  • 29,502
  • 35
  • 121
  • 166
5
votes
1 answer

How can I ensure that a function takes a certain amount of time in Go?

I am implementing EnScrypt for an SQRL client in Go. The function needs to run until it has used a minimum amount of CPU time. My Python code looks like this: def enscrypt_time(salt, password, seconds, n=9, r=256): N = 1 << n start =…
Terrel Shumway
  • 766
  • 7
  • 8