From 58fa61b37b3df9966f848ed6c925b26d5492034e Mon Sep 17 00:00:00 2001 From: adam Date: Sun, 21 Jun 2009 22:54:19 +0000 Subject: [PATCH] merge copyright headers with brians code darcs-hash:20090621225419-5007d-760ef414d30f7175fd96f1cac9e79914ba02bae4.gz --- src/org/ibex/crypto/HMAC.java | 8 ++++++++ src/org/ibex/crypto/PKCS1.java | 8 ++++++++ src/org/ibex/crypto/RC4.java | 8 +++++++- src/org/ibex/crypto/RSA.java | 9 +++++++++ 4 files changed, 32 insertions(+), 1 deletion(-) diff --git a/src/org/ibex/crypto/HMAC.java b/src/org/ibex/crypto/HMAC.java index 22fb126..351a527 100644 --- a/src/org/ibex/crypto/HMAC.java +++ b/src/org/ibex/crypto/HMAC.java @@ -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 { diff --git a/src/org/ibex/crypto/PKCS1.java b/src/org/ibex/crypto/PKCS1.java index 054f538..63d6c37 100644 --- a/src/org/ibex/crypto/PKCS1.java +++ b/src/org/ibex/crypto/PKCS1.java @@ -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; diff --git a/src/org/ibex/crypto/RC4.java b/src/org/ibex/crypto/RC4.java index 8891ec7..898f9f5 100644 --- a/src/org/ibex/crypto/RC4.java +++ b/src/org/ibex/crypto/RC4.java @@ -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; diff --git a/src/org/ibex/crypto/RSA.java b/src/org/ibex/crypto/RSA.java index c6590a8..e3c179c 100644 --- a/src/org/ibex/crypto/RSA.java +++ b/src/org/ibex/crypto/RSA.java @@ -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.*; -- 1.7.10.4