Skip to content
#

eddsa

Here are 39 public repositories matching this topic...

yelhousni
yelhousni commented Oct 14, 2021

Similarly to BLS12 curves, BLS24 Miller loop counter is the curve seed u. Although this seed is 32 bits (half the size of BLS12 seeds), the BLS24 Miller loop is slower. This is mainly because the most costly operations encountered in the Miller loop computation are those that take place in the full extension field Fp24. Implementing this paper's [CBNW10]

good first issue perf
alexkravets
alexkravets commented Feb 5, 2021

publicKeyJwkFromPublicKeyBase58 method is present for Ed25519 suite but is missing for secp256k1 .

Suggested method:

const publicKeyJwkFromPublicKeyBase58 = value => {
  const publicKeyHex = publicKeyUInt8ArrayFromPublicKeyBase58(value).toString('hex')
  const publicKeyJwk = publicKeyJwkFromPublicKeyHex(publicKeyHex)

  return publicKeyJwk
}
enhancement good first issue

A stand-alone gRPC based authentication API. Easily integrate authentication into any custom project. Authenticator takes care of user credential storage and checking. It generates JSON Web tokens for users, which easily can be verified by other servers in your ecosystem using performant and secure EdDSA public key cryptography.

  • Updated Nov 4, 2020
  • Go

Improve this page

Add a description, image, and links to the eddsa topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the eddsa topic, visit your repo's landing page and select "manage topics."

Learn more