From ff2c19efdbd6108acf9bff1c53adba8c2d3aa001 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Sat, 19 Dec 2015 14:38:17 +0000 Subject: [PATCH] Fix URLs mangled by reformat Some URLs in the source code ended up getting mangled by indent. This fixes it. Based on a patch supplied by Arnaud Lacombe Reviewed-by: Richard Levitte --- crypto/bn/bn_exp.c | 2 +- crypto/camellia/camellia.c | 2 +- crypto/ec/ectest.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/bn/bn_exp.c b/crypto/bn/bn_exp.c index 14a3689fc2..48396254e0 100644 --- a/crypto/bn/bn_exp.c +++ b/crypto/bn/bn_exp.c @@ -590,7 +590,7 @@ static int MOD_EXP_CTIME_COPY_FROM_PREBUF(BIGNUM *b, int top, * precomputation memory layout to limit data-dependency to a minimum to * protect secret exponents (cf. the hyper-threading timing attacks pointed * out by Colin Percival, - * http://www.daemong-consideredperthreading-considered-harmful/) + * http://www.daemonology.net/hyperthreading-considered-harmful/) */ int BN_mod_exp_mont_consttime(BIGNUM *rr, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, diff --git a/crypto/camellia/camellia.c b/crypto/camellia/camellia.c index 05887a9e6e..719fa61cf6 100644 --- a/crypto/camellia/camellia.c +++ b/crypto/camellia/camellia.c @@ -67,7 +67,7 @@ /* * Algorithm Specification - * http://info.isl.llia/specicrypt/eng/camellia/specifications.html + * http://info.isl.ntt.co.jp/crypt/eng/camellia/specifications.html */ /* diff --git a/crypto/ec/ectest.c b/crypto/ec/ectest.c index fede530bc1..efab0b07b1 100644 --- a/crypto/ec/ectest.c +++ b/crypto/ec/ectest.c @@ -1591,7 +1591,7 @@ struct nistp_test_params { int degree; /* * Qx, Qy and D are taken from - * http://csrcdocut.gov/groups/ST/toolkit/documents/Examples/ECDSA_Prime.pdf + * http://csrc.nist.gov/groups/ST/toolkit/documents/Examples/ECDSA_Prime.pdf * Otherwise, values are standard curve parameters from FIPS 180-3 */ const char *p, *a, *b, *Qx, *Qy, *Gx, *Gy, *order, *d; -- 2.25.1