summaryrefslogtreecommitdiff
path: root/sys/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'sys/crypto')
-rw-r--r--sys/crypto/aes.c1
-rw-r--r--sys/crypto/aes.h1
-rw-r--r--sys/crypto/blake2s.c1
-rw-r--r--sys/crypto/blake2s.h1
-rw-r--r--sys/crypto/chacha_private.h1
-rw-r--r--sys/crypto/chachapoly.c1
-rw-r--r--sys/crypto/chachapoly.h1
-rw-r--r--sys/crypto/curve25519.c1
-rw-r--r--sys/crypto/curve25519.h1
-rw-r--r--sys/crypto/idgen.c1
-rw-r--r--sys/crypto/poly1305.c1
-rw-r--r--sys/crypto/poly1305.h1
12 files changed, 12 insertions, 0 deletions
diff --git a/sys/crypto/aes.c b/sys/crypto/aes.c
index e4feaf74636..f885e145cb1 100644
--- a/sys/crypto/aes.c
+++ b/sys/crypto/aes.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: aes.c,v 1.2 2020/07/22 13:54:30 tobhe Exp $ */
/*
* Copyright (c) 2016 Thomas Pornin <pornin@bolet.org>
*
diff --git a/sys/crypto/aes.h b/sys/crypto/aes.h
index 9718115fc65..8c685ef0587 100644
--- a/sys/crypto/aes.h
+++ b/sys/crypto/aes.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: aes.h,v 1.4 2020/07/22 13:54:30 tobhe Exp $ */
/*
* Copyright (c) 2016 Thomas Pornin <pornin@bolet.org>
* Copyright (c) 2016 Mike Belopuhov
diff --git a/sys/crypto/blake2s.c b/sys/crypto/blake2s.c
index bdc2a92a533..ea7fec64b80 100644
--- a/sys/crypto/blake2s.c
+++ b/sys/crypto/blake2s.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: blake2s.c,v 1.2 2020/07/22 13:54:30 tobhe Exp $ */
/*
* Copyright (C) 2012 Samuel Neves <sneves@dei.uc.pt>. All Rights Reserved.
* Copyright (C) 2015-2020 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
diff --git a/sys/crypto/blake2s.h b/sys/crypto/blake2s.h
index 8554a25fd3f..69c5b23f7f1 100644
--- a/sys/crypto/blake2s.h
+++ b/sys/crypto/blake2s.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: blake2s.h,v 1.2 2020/07/22 13:54:30 tobhe Exp $ */
/*
* Copyright (C) 2015-2020 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
* Copyright (C) 2019-2020 Matt Dunwoodie <ncon@noconroy.net>.
diff --git a/sys/crypto/chacha_private.h b/sys/crypto/chacha_private.h
index 9c30f0b6d77..8c926ea4b0c 100644
--- a/sys/crypto/chacha_private.h
+++ b/sys/crypto/chacha_private.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: chacha_private.h,v 1.4 2020/07/22 13:54:30 tobhe Exp $ */
/*
chacha-merged.c version 20080118
D. J. Bernstein
diff --git a/sys/crypto/chachapoly.c b/sys/crypto/chachapoly.c
index bbac9c1c42e..b4cdbea7b24 100644
--- a/sys/crypto/chachapoly.c
+++ b/sys/crypto/chachapoly.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: chachapoly.c,v 1.6 2020/07/22 13:54:30 tobhe Exp $ */
/*
* Copyright (c) 2015 Mike Belopuhov
*
diff --git a/sys/crypto/chachapoly.h b/sys/crypto/chachapoly.h
index 4469d58c6de..e793cfb7de1 100644
--- a/sys/crypto/chachapoly.h
+++ b/sys/crypto/chachapoly.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: chachapoly.h,v 1.4 2020/07/22 13:54:30 tobhe Exp $ */
/*
* Copyright (c) 2015 Mike Belopuhov
*
diff --git a/sys/crypto/curve25519.c b/sys/crypto/curve25519.c
index 3e3aa1b9c4a..348890fe780 100644
--- a/sys/crypto/curve25519.c
+++ b/sys/crypto/curve25519.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: curve25519.c,v 1.2 2020/07/22 13:54:30 tobhe Exp $ */
/*
* Copyright (C) 2018-2020 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
* Copyright (C) 2015-2016 The fiat-crypto Authors.
diff --git a/sys/crypto/curve25519.h b/sys/crypto/curve25519.h
index 416d51225b4..2f7892ab565 100644
--- a/sys/crypto/curve25519.h
+++ b/sys/crypto/curve25519.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: curve25519.h,v 1.2 2020/07/22 13:54:30 tobhe Exp $ */
/*
* Copyright (C) 2019-2020 Matt Dunwoodie <ncon@noconroy.net>
*
diff --git a/sys/crypto/idgen.c b/sys/crypto/idgen.c
index 4ce11b3b0bb..c744ab0b81e 100644
--- a/sys/crypto/idgen.c
+++ b/sys/crypto/idgen.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: idgen.c,v 1.8 2020/07/22 13:54:30 tobhe Exp $ */
/*
* Copyright (c) 2008 Damien Miller <djm@mindrot.org>
*
diff --git a/sys/crypto/poly1305.c b/sys/crypto/poly1305.c
index 93ab9ef7359..3f7aec44426 100644
--- a/sys/crypto/poly1305.c
+++ b/sys/crypto/poly1305.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: poly1305.c,v 1.2 2020/07/22 13:54:30 tobhe Exp $ */
/*
* Public Domain poly1305 from Andrew Moon
* Based on poly1305-donna.c, poly1305-donna-32.h and poly1305-donna.h from:
diff --git a/sys/crypto/poly1305.h b/sys/crypto/poly1305.h
index a36b84a6ad9..bd68586c3ec 100644
--- a/sys/crypto/poly1305.h
+++ b/sys/crypto/poly1305.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: poly1305.h,v 1.2 2020/07/22 13:54:30 tobhe Exp $ */
/*
* Public Domain poly1305 from Andrew Moon
*