Skip to content

Commit d060c73

Browse files
committed
Update URLs to HTTPS
1 parent a8313b2 commit d060c73

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,4 @@ express Statement of Purpose.
120120
party to this document and has no duty or obligation with respect to
121121
this CC0 or use of the Work.
122122

123-
For more information, please see http://creativecommons.org/publicdomain/zero/1.0/
123+
For more information, please see https://creativecommons.org/publicdomain/zero/1.0/

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ed25519-java
22
============
33

4-
This is an implementation of EdDSA in Java. Structurally, it is based on the ref10 implementation in SUPERCOP (see http://ed25519.cr.yp.to/software.html).
4+
This is an implementation of EdDSA in Java. Structurally, it is based on the ref10 implementation in SUPERCOP (see https://ed25519.cr.yp.to/software.html).
55

66
There are two internal implementations:
77
* A port of the radix-2^51 operations in ref10 - fast and constant-time, but only useful for Ed25519.
@@ -28,7 +28,12 @@ This code is released to the public domain and can be used for any purpose. See
2828
Disclaimer
2929
----------
3030

31-
There are no guarantees that this is secure for all uses. All unit tests are passing, including tests against [the data from the Python implementation](http://ed25519.cr.yp.to/python/sign.input), and the code has been reviewed by [an independent developer](https://github.com/BloodyRookie), but it has not yet been audited by a professional cryptographer. In particular, the constant-time signing properties of ref10 may not have been completely retained (although this is the eventual goal for the Ed25519-specific implementation).
31+
There are no guarantees that this is secure for all uses. All unit tests are passing,
32+
including tests against [the data from the Python implementation](https://ed25519.cr.yp.to/python/sign.input),
33+
and the code has been reviewed by [an independent developer](https://github.com/BloodyRookie),
34+
but it has not yet been audited by a professional cryptographer. In particular, the
35+
constant-time signing properties of ref10 may not have been completely retained (although
36+
this is the eventual goal for the Ed25519-specific implementation).
3237

3338
Code comparison
3439
---------------
@@ -52,6 +57,6 @@ For ease of following, here are the main methods in ref10 and their equivalents
5257
Credits
5358
-------
5459

55-
* The Ed25519 class was originally ported by k3d3 from [the Python Ed25519 reference implementation](http://ed25519.cr.yp.to/python/ed25519.py).
60+
* The Ed25519 class was originally ported by k3d3 from [the Python Ed25519 reference implementation](https://ed25519.cr.yp.to/python/ed25519.py).
5661
* Useful comments and tweaks were found in [the GNUnet implementation of Ed25519](https://gnunet.org/svn/gnunet-java/src/main/java/org/gnunet/util/crypto/) (based on k3d3's class).
5762
* [BloodyRookie](https://github.com/BloodyRookie) reviewed the code, adding many useful comments, unit tests and literature.

0 commit comments

Comments
 (0)