-
Updated
Oct 5, 2021 - PHP
x25519
Here are 55 public repositories matching this topic...
-
Updated
Oct 4, 2021 - PHP
-
Updated
Nov 20, 2021 - C#
-
Updated
Nov 19, 2021 - C#
-
Updated
Sep 29, 2021 - Rust
-
Updated
Mar 3, 2020 - Go
-
Updated
Aug 9, 2021 - TypeScript
-
Updated
Jan 20, 2020 - C
The gem is presently not packaged in such a way it will build on non-x86 architectures.
It shouldn't be too hard as it already packages the portable ref10 implementation, but some work will be required in e.g. extconf.rb
While there are a number of build tags to try to force the no assembly and 32-bit backends to be build and exercised this really should build and test with an actual 32-bit toolchain/system so that stupid errors can be caught.
As we don't care about performance, QEMU or something should be sufficient here.
-
Updated
Feb 27, 2021 - C#
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
}
-
Updated
Sep 11, 2021 - C
-
Updated
Apr 19, 2021 - C
-
Updated
Jun 6, 2019 - Rust
-
Updated
Jun 28, 2020 - C
-
Updated
Jun 1, 2017 - C
-
Updated
Feb 24, 2018 - LiveScript
-
Updated
Nov 21, 2021
-
Updated
Oct 13, 2021 - OCaml
-
Updated
Oct 28, 2021 - REALbasic
Improve this page
Add a description, image, and links to the x25519 topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the x25519 topic, visit your repo's landing page and select "manage topics."


To check that all newtypes (
SecretKeys,Poly1305, etc.) implement the correct traits, new testing functions are needed.For example
fn test_traits_secret_key<Secret: Debug + Drop + PartialEq>() {}could be used to check that a secret key implements the needed traits in a test like so: