aboutsummaryrefslogtreecommitdiff
path: root/crypt
diff options
context:
space:
mode:
Diffstat (limited to 'crypt')
-rw-r--r--crypt/Makefile2
-rw-r--r--crypt/badsalttest.c2
-rw-r--r--crypt/crypt-entry.c2
-rw-r--r--crypt/crypt-private.h2
-rw-r--r--crypt/crypt.c2
-rw-r--r--crypt/crypt.h2
-rw-r--r--crypt/crypt_util.c2
-rw-r--r--crypt/md5-crypt.c2
-rw-r--r--crypt/md5.c2
-rw-r--r--crypt/md5.h2
-rw-r--r--crypt/md5test-giant.c2
-rw-r--r--crypt/sha256-crypt.c2
-rw-r--r--crypt/sha256.c2
-rw-r--r--crypt/sha256.h2
-rw-r--r--crypt/sha512-crypt.c2
-rw-r--r--crypt/sha512.c2
-rw-r--r--crypt/sha512.h2
-rw-r--r--crypt/ufc-crypt.h2
-rw-r--r--crypt/ufc.c2
19 files changed, 19 insertions, 19 deletions
diff --git a/crypt/Makefile b/crypt/Makefile
index fd36111..a6adfff 100644
--- a/crypt/Makefile
+++ b/crypt/Makefile
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU Lesser General Public
# License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
#
# Sub-makefile for crypt() portion of the library.
diff --git a/crypt/badsalttest.c b/crypt/badsalttest.c
index 60b24ab..f8ea037 100644
--- a/crypt/badsalttest.c
+++ b/crypt/badsalttest.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <stdio.h>
#include <unistd.h>
diff --git a/crypt/crypt-entry.c b/crypt/crypt-entry.c
index 339090d..a3b0d14 100644
--- a/crypt/crypt-entry.c
+++ b/crypt/crypt-entry.c
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with the GNU C Library; if not, see
- * <http://www.gnu.org/licenses/>.
+ * <https://www.gnu.org/licenses/>.
*
* crypt entry points
*
diff --git a/crypt/crypt-private.h b/crypt/crypt-private.h
index ed4aa90..25b1e8f 100644
--- a/crypt/crypt-private.h
+++ b/crypt/crypt-private.h
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with the GNU C Library; if not, see
- * <http://www.gnu.org/licenses/>.
+ * <https://www.gnu.org/licenses/>.
*
* @(#)crypt-private.h 1.4 12/20/96
*/
diff --git a/crypt/crypt.c b/crypt/crypt.c
index 43c0ae3..b0080fd 100644
--- a/crypt/crypt.c
+++ b/crypt/crypt.c
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; see the file COPYING.LIB. If not,
- * see <http://www.gnu.org/licenses/>.
+ * see <https://www.gnu.org/licenses/>.
*
* @(#)crypt.c 2.25 12/20/96
*
diff --git a/crypt/crypt.h b/crypt/crypt.h
index 65061de..c92651c 100644
--- a/crypt/crypt.h
+++ b/crypt/crypt.h
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with the GNU C Library; if not, see
- * <http://www.gnu.org/licenses/>.
+ * <https://www.gnu.org/licenses/>.
*
* @(#)crypt.h 1.5 12/20/96
*
diff --git a/crypt/crypt_util.c b/crypt/crypt_util.c
index 8cff87b..81c8e9e 100644
--- a/crypt/crypt_util.c
+++ b/crypt/crypt_util.c
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; see the file COPYING.LIB. If not,
- * see <http://www.gnu.org/licenses/>.
+ * see <https://www.gnu.org/licenses/>.
*
* @(#)crypt_util.c 2.56 12/20/96
*
diff --git a/crypt/md5-crypt.c b/crypt/md5-crypt.c
index ff7d96c..5044b0c 100644
--- a/crypt/md5-crypt.c
+++ b/crypt/md5-crypt.c
@@ -16,7 +16,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <assert.h>
#include <errno.h>
diff --git a/crypt/md5.c b/crypt/md5.c
index ef13ca9..884f673 100644
--- a/crypt/md5.c
+++ b/crypt/md5.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
/* Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995. */
diff --git a/crypt/md5.h b/crypt/md5.h
index dd7de52..6000bdd 100644
--- a/crypt/md5.h
+++ b/crypt/md5.h
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#ifndef _MD5_H
#define _MD5_H 1
diff --git a/crypt/md5test-giant.c b/crypt/md5test-giant.c
index cf1b653..1f800b3 100644
--- a/crypt/md5test-giant.c
+++ b/crypt/md5test-giant.c
@@ -13,7 +13,7 @@
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, see <http://www.gnu.org/licenses/>. */
+ along with this program; if not, see <https://www.gnu.org/licenses/>. */
#include <stdint.h>
#include <stdio.h>
diff --git a/crypt/sha256-crypt.c b/crypt/sha256-crypt.c
index c10061d..78fa843 100644
--- a/crypt/sha256-crypt.c
+++ b/crypt/sha256-crypt.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <assert.h>
#include <errno.h>
diff --git a/crypt/sha256.c b/crypt/sha256.c
index f90650f..0cd6e86 100644
--- a/crypt/sha256.c
+++ b/crypt/sha256.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
/* Written by Ulrich Drepper <drepper@redhat.com>, 2007. */
diff --git a/crypt/sha256.h b/crypt/sha256.h
index c311e5d..9c9d116 100644
--- a/crypt/sha256.h
+++ b/crypt/sha256.h
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#ifndef _SHA256_H
#define _SHA256_H 1
diff --git a/crypt/sha512-crypt.c b/crypt/sha512-crypt.c
index df665cb..63d1dad 100644
--- a/crypt/sha512-crypt.c
+++ b/crypt/sha512-crypt.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <assert.h>
#include <errno.h>
diff --git a/crypt/sha512.c b/crypt/sha512.c
index 94adbd4..7d4ac56 100644
--- a/crypt/sha512.c
+++ b/crypt/sha512.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
/* Written by Ulrich Drepper <drepper@redhat.com>, 2007. */
diff --git a/crypt/sha512.h b/crypt/sha512.h
index 4b4d89e..11c7b5f 100644
--- a/crypt/sha512.h
+++ b/crypt/sha512.h
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#ifndef _SHA512_H
#define _SHA512_H 1
diff --git a/crypt/ufc-crypt.h b/crypt/ufc-crypt.h
index 7b511e9..98cfc44 100644
--- a/crypt/ufc-crypt.h
+++ b/crypt/ufc-crypt.h
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <stdint.h>
diff --git a/crypt/ufc.c b/crypt/ufc.c
index bc617c3..cc849d3 100644
--- a/crypt/ufc.c
+++ b/crypt/ufc.c
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with the GNU C Library; see the file COPYING.LIB. If not,
- * see <http://www.gnu.org/licenses/>.
+ * see <https://www.gnu.org/licenses/>.
*
* @(#)ufc.c 2.7 9/10/96
*