diff options
author | 2013-11-21 02:50:00 +0000 | |
---|---|---|
committer | 2013-11-21 02:50:00 +0000 | |
commit | 0d623f73a3e664c50840597a7378ff228588bc6f (patch) | |
tree | 668fd3e73992cf0ff5a34b8b30711b9dc6f89239 | |
parent | My audit of mandoc revealed two missing (unsigned char) casts (diff) | |
download | wireguard-openbsd-0d623f73a3e664c50840597a7378ff228588bc6f.tar.xz wireguard-openbsd-0d623f73a3e664c50840597a7378ff228588bc6f.zip |
RCSID markers
-rw-r--r-- | usr.bin/ssh/cipher-chachapoly.c | 2 | ||||
-rw-r--r-- | usr.bin/ssh/poly1305.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/usr.bin/ssh/cipher-chachapoly.c b/usr.bin/ssh/cipher-chachapoly.c index c25bb91723b..78ab8335006 100644 --- a/usr.bin/ssh/cipher-chachapoly.c +++ b/usr.bin/ssh/cipher-chachapoly.c @@ -14,6 +14,8 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +/* $OpenBSD: cipher-chachapoly.c,v 1.2 2013/11/21 02:50:00 djm Exp $ */ + #include <sys/types.h> #include <stdarg.h> /* needed for log.h */ #include <string.h> diff --git a/usr.bin/ssh/poly1305.c b/usr.bin/ssh/poly1305.c index 766acdbbded..84d4edb9bd4 100644 --- a/usr.bin/ssh/poly1305.c +++ b/usr.bin/ssh/poly1305.c @@ -3,6 +3,8 @@ * poly1305-donna-unrolled.c from https://github.com/floodyberry/poly1305-donna */ +/* $OpenBSD: poly1305.c,v 1.2 2013/11/21 02:50:00 djm Exp $ */ + #include <sys/types.h> #include <stdint.h> |