merge copyright headers with brians code master
authoradam <adam@megacz.com>
Sun, 21 Jun 2009 22:54:19 +0000 (22:54 +0000)
committeradam <adam@megacz.com>
Sun, 21 Jun 2009 22:54:19 +0000 (22:54 +0000)
darcs-hash:20090621225419-5007d-760ef414d30f7175fd96f1cac9e79914ba02bae4.gz

src/org/ibex/crypto/HMAC.java
src/org/ibex/crypto/PKCS1.java
src/org/ibex/crypto/RC4.java
src/org/ibex/crypto/RSA.java

index 22fb126..351a527 100644 (file)
@@ -1,3 +1,11 @@
+// Copyright 2000-2005 the Contributors, as shown in the revision logs.
+// Licensed under the Apache Public Source License 2.0 ("the License").
+// You may not use this file except in compliance with the License.
+/*
+ * org.ibex.crypto.HMAC - By Brian Alliet
+ * Copyright (C) 2004 Brian Alliet
+ */
+
 package org.ibex.crypto;
 
 public class HMAC extends Digest {
index 054f538..63d6c37 100644 (file)
@@ -1,3 +1,11 @@
+// Copyright 2000-2005 the Contributors, as shown in the revision logs.
+// Licensed under the Apache Public Source License 2.0 ("the License").
+// You may not use this file except in compliance with the License.
+/*
+ * org.ibex.PKCS1 - By Brian Alliet
+ * Copyright (C) 2004 Brian Alliet
+ */
+
 package org.ibex.crypto;
 import java.security.SecureRandom;
 
index 8891ec7..898f9f5 100644 (file)
@@ -1,4 +1,10 @@
-package org.ibex.crypto;
+// Copyright 2000-2005 the Contributors, as shown in the revision logs.
+// Licensed under the Apache Public Source License 2.0 ("the License").
+// You may not use this file except in compliance with the License.
+/*
+ * org.ibex.crypto.RC4 - By Brian Alliet
+ * Copyright (C) 2004 Brian Alliet
+ */
 
 package org.ibex.crypto;
 
index c6590a8..e3c179c 100644 (file)
@@ -1,3 +1,12 @@
+// Copyright 2000-2005 the Contributors, as shown in the revision logs.
+// Licensed under the Apache Public Source License 2.0 ("the License").
+// You may not use this file except in compliance with the License.
+
+/*
+ * org.ibex.RSA - By Brian Alliet
+ * Copyright (C) 2004 Brian Alliet
+ */
 package org.ibex.crypto;
 import java.math.BigInteger;
 import java.util.*;