summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Steves <stevesk@cvs.openbsd.org>2001-07-30 16:23:31 +0000
committerKevin Steves <stevesk@cvs.openbsd.org>2001-07-30 16:23:31 +0000
commit7eefd3805811be32f891cb22c268b80637f33d24 (patch)
treee27f655354598162fda1b551d7887197b161dab6
parenta0fc93f341a68e6535c1e0ffb0548fdc582d83a9 (diff)
new BSD-style license:
Brian Gladman <brg@gladman.plus.com>: >I have updated my code at: >http://fp.gladman.plus.com/cryptography_technology/rijndael/index.htm >with a copyright notice as follows: >[...] >I am not sure which version of my old code you are using but I am >happy for the notice above to be substituted for my existing copyright >intent if this meets your purpose.
-rw-r--r--usr.bin/ssh/rijndael.c29
-rw-r--r--usr.bin/ssh/rijndael.h29
2 files changed, 42 insertions, 16 deletions
diff --git a/usr.bin/ssh/rijndael.c b/usr.bin/ssh/rijndael.c
index 98ecb55c811..a8cffa08fc1 100644
--- a/usr.bin/ssh/rijndael.c
+++ b/usr.bin/ssh/rijndael.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rijndael.c,v 1.7 2001/02/04 15:32:24 stevesk Exp $ */
+/* $OpenBSD: rijndael.c,v 1.8 2001/07/30 16:23:30 stevesk Exp $ */
/* This is an independent implementation of the encryption algorithm: */
/* */
@@ -6,13 +6,26 @@
/* */
/* which is a candidate algorithm in the Advanced Encryption Standard */
/* programme of the US National Institute of Standards and Technology. */
-/* */
-/* Copyright in this implementation is held by Dr B R Gladman but I */
-/* hereby give permission for its free direct or derivative use subject */
-/* to acknowledgment of its origin and compliance with any conditions */
-/* that the originators of the algorithm place on its exploitation. */
-/* */
-/* Dr Brian Gladman (gladman@seven77.demon.co.uk) 14th January 1999 */
+
+/*
+ -----------------------------------------------------------------------
+ Copyright (c) 2001 Dr Brian Gladman <brg@gladman.uk.net>, Worcester, UK
+
+ TERMS
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ This software is provided 'as is' with no guarantees of correctness or
+ fitness for purpose.
+ -----------------------------------------------------------------------
+*/
/* Timing data for Rijndael (rijndael.c)
diff --git a/usr.bin/ssh/rijndael.h b/usr.bin/ssh/rijndael.h
index 98b2c8459f1..d129ff2eea5 100644
--- a/usr.bin/ssh/rijndael.h
+++ b/usr.bin/ssh/rijndael.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: rijndael.h,v 1.8 2001/05/09 23:01:31 markus Exp $ */
+/* $OpenBSD: rijndael.h,v 1.9 2001/07/30 16:23:30 stevesk Exp $ */
/* This is an independent implementation of the encryption algorithm: */
/* */
@@ -6,13 +6,26 @@
/* */
/* which is a candidate algorithm in the Advanced Encryption Standard */
/* programme of the US National Institute of Standards and Technology. */
-/* */
-/* Copyright in this implementation is held by Dr B R Gladman but I */
-/* hereby give permission for its free direct or derivative use subject */
-/* to acknowledgment of its origin and compliance with any conditions */
-/* that the originators of the algorithm place on its exploitation. */
-/* */
-/* Dr Brian Gladman (gladman@seven77.demon.co.uk) 14th January 1999 */
+
+/*
+ -----------------------------------------------------------------------
+ Copyright (c) 2001 Dr Brian Gladman <brg@gladman.uk.net>, Worcester, UK
+
+ TERMS
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ This software is provided 'as is' with no guarantees of correctness or
+ fitness for purpose.
+ -----------------------------------------------------------------------
+*/
#ifndef _RIJNDAEL_H_
#define _RIJNDAEL_H_