Skip to content

Commit 98dac87

Browse files
committed
Merge #858: Fix insecure links
07aa4c7 Fix insecure links (Dimitris Apostolou) Pull request description: ACKs for top commit: sipa: ACK 07aa4c7. Verified all the modified links. jonasnick: ACK 07aa4c7 Tree-SHA512: d1240aab5e40a204c75fca1049b99af9890684df7dbce4167b1904f73424c8a4f84ed85a8cc315501f1b7cf1674d744232b9f2126dff31e3d47e4f3fc65764d4
2 parents b61f9da + 07aa4c7 commit 98dac87

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+358
-358
lines changed

build-aux/m4/ax_prog_cc_for_build.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ===========================================================================
2-
# http://www.gnu.org/software/autoconf-archive/ax_prog_cc_for_build.html
2+
# https://www.gnu.org/software/autoconf-archive/ax_prog_cc_for_build.html
33
# ===========================================================================
44
#
55
# SYNOPSIS

contrib/lax_der_parsing.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2015 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2015 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#include <string.h>
88
#include <secp256k1.h>

contrib/lax_der_parsing.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2015 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2015 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
/****
88
* Please do not link this file directly. It is not part of the libsecp256k1

contrib/lax_der_privatekey_parsing.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2014, 2015 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2014, 2015 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#include <string.h>
88
#include <secp256k1.h>

contrib/lax_der_privatekey_parsing.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2014, 2015 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2014, 2015 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
/****
88
* Please do not link this file directly. It is not part of the libsecp256k1

contrib/travis.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fi
2828
if [ "$RUN_VALGRIND" = "yes" ]
2929
then
3030
make -j2
31-
# the `--error-exitcode` is required to make the test fail if valgrind found errors, otherwise it'll return 0 (http://valgrind.org/docs/manual/manual-core.html)
31+
# the `--error-exitcode` is required to make the test fail if valgrind found errors, otherwise it'll return 0 (https://www.valgrind.org/docs/manual/manual-core.html)
3232
valgrind --error-exitcode=42 ./tests 16
3333
valgrind --error-exitcode=42 ./exhaustive_tests
3434
fi

sage/group_prover.sage

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
# as we assume that all constraints in it are complementary with each other.
4343
#
4444
# Based on the sage verification scripts used in the Explicit-Formulas Database
45-
# by Tanja Lange and others, see http://hyperelliptic.org/EFD
45+
# by Tanja Lange and others, see https://hyperelliptic.org/EFD
4646

4747
class fastfrac:
4848
"""Fractions over rings."""

src/asm/field_10x26_arm.s

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
@ vim: set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab syntax=armasm:
2-
/**********************************************************************
3-
* Copyright (c) 2014 Wladimir J. van der Laan *
4-
* Distributed under the MIT software license, see the accompanying *
5-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
6-
**********************************************************************/
2+
/***********************************************************************
3+
* Copyright (c) 2014 Wladimir J. van der Laan *
4+
* Distributed under the MIT software license, see the accompanying *
5+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
6+
***********************************************************************/
77
/*
88
ARM implementation of field_10x26 inner loops.
99

src/assumptions.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2020 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2020 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#ifndef SECP256K1_ASSUMPTIONS_H
88
#define SECP256K1_ASSUMPTIONS_H

src/basic-config.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2013, 2014 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2013, 2014 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#ifndef SECP256K1_BASIC_CONFIG_H
88
#define SECP256K1_BASIC_CONFIG_H

src/bench.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2014 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2014 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#ifndef SECP256K1_BENCH_H
88
#define SECP256K1_BENCH_H

src/bench_ecdh.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2015 Pieter Wuille, Andrew Poelstra *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2015 Pieter Wuille, Andrew Poelstra *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#include <string.h>
88

src/bench_ecmult.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2017 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2017 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66
#include <stdio.h>
77

88
#include "include/secp256k1.h"

src/bench_internal.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2014-2015 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2014-2015 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66
#include <stdio.h>
77

88
#include "include/secp256k1.h"

src/bench_recover.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2014-2015 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2014-2015 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#include "include/secp256k1.h"
88
#include "include/secp256k1_recovery.h"

src/bench_schnorrsig.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2018-2020 Andrew Poelstra, Jonas Nick *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2018-2020 Andrew Poelstra, Jonas Nick *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#include <string.h>
88
#include <stdlib.h>

src/bench_sign.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2014 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2014 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#include "include/secp256k1.h"
88
#include "util.h"

src/bench_verify.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2014 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2014 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#include <stdio.h>
88
#include <string.h>

src/ecdsa.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2013, 2014 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2013, 2014 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#ifndef SECP256K1_ECDSA_H
88
#define SECP256K1_ECDSA_H

src/ecdsa_impl.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2013-2015 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2013-2015 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77

88
#ifndef SECP256K1_ECDSA_IMPL_H

src/eckey.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2013, 2014 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2013, 2014 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#ifndef SECP256K1_ECKEY_H
88
#define SECP256K1_ECKEY_H

src/eckey_impl.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2013, 2014 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2013, 2014 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#ifndef SECP256K1_ECKEY_IMPL_H
88
#define SECP256K1_ECKEY_IMPL_H

src/ecmult.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2013, 2014, 2017 Pieter Wuille, Andrew Poelstra *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2013, 2014, 2017 Pieter Wuille, Andrew Poelstra *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#ifndef SECP256K1_ECMULT_H
88
#define SECP256K1_ECMULT_H

src/ecmult_const.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2015 Andrew Poelstra *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2015 Andrew Poelstra *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#ifndef SECP256K1_ECMULT_CONST_H
88
#define SECP256K1_ECMULT_CONST_H

src/ecmult_const_impl.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2015 Pieter Wuille, Andrew Poelstra *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2015 Pieter Wuille, Andrew Poelstra *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#ifndef SECP256K1_ECMULT_CONST_IMPL_H
88
#define SECP256K1_ECMULT_CONST_IMPL_H

src/ecmult_gen.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/**********************************************************************
2-
* Copyright (c) 2013, 2014 Pieter Wuille *
3-
* Distributed under the MIT software license, see the accompanying *
4-
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5-
**********************************************************************/
1+
/***********************************************************************
2+
* Copyright (c) 2013, 2014 Pieter Wuille *
3+
* Distributed under the MIT software license, see the accompanying *
4+
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5+
***********************************************************************/
66

77
#ifndef SECP256K1_ECMULT_GEN_H
88
#define SECP256K1_ECMULT_GEN_H

0 commit comments

Comments
 (0)