From 4a23c660491a2418e138b261e230baa6cd284851 Mon Sep 17 00:00:00 2001 From: adam Date: Tue, 4 Jan 2005 22:45:11 +0000 Subject: [PATCH] licensing update to APSL 2.0 darcs-hash:20050104224511-5007d-46e4559a16320e4529ccce352650930685f2f942.gz --- src/org/ibex/crypto/Base36.java | 4 ++++ src/org/ibex/crypto/EtcPasswd.java | 4 ++++ src/org/ibex/crypto/HMAC.java | 4 ++++ src/org/ibex/crypto/PKCS1.java | 4 ++++ src/org/ibex/crypto/RC4.java | 4 ++++ src/org/ibex/crypto/RSA.java | 4 ++++ 6 files changed, 24 insertions(+) diff --git a/src/org/ibex/crypto/Base36.java b/src/org/ibex/crypto/Base36.java index bf5206b..1702bd7 100644 --- a/src/org/ibex/crypto/Base36.java +++ b/src/org/ibex/crypto/Base36.java @@ -1,3 +1,7 @@ +// 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. + package org.ibex.crypto; public class Base36 { diff --git a/src/org/ibex/crypto/EtcPasswd.java b/src/org/ibex/crypto/EtcPasswd.java index a1a77cd..eeb1018 100644 --- a/src/org/ibex/crypto/EtcPasswd.java +++ b/src/org/ibex/crypto/EtcPasswd.java @@ -1,3 +1,7 @@ +// 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. + package org.ibex.crypto; import org.ibex.util.*; import java.util.*; diff --git a/src/org/ibex/crypto/HMAC.java b/src/org/ibex/crypto/HMAC.java index 22fb126..f531b72 100644 --- a/src/org/ibex/crypto/HMAC.java +++ b/src/org/ibex/crypto/HMAC.java @@ -1,3 +1,7 @@ +// 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. + 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..05ed788 100644 --- a/src/org/ibex/crypto/PKCS1.java +++ b/src/org/ibex/crypto/PKCS1.java @@ -1,3 +1,7 @@ +// 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. + 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 be6f821..6efb75d 100644 --- a/src/org/ibex/crypto/RC4.java +++ b/src/org/ibex/crypto/RC4.java @@ -1,3 +1,7 @@ +// 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. + package org.ibex.crypto; diff --git a/src/org/ibex/crypto/RSA.java b/src/org/ibex/crypto/RSA.java index bc15cef..994c7c8 100644 --- a/src/org/ibex/crypto/RSA.java +++ b/src/org/ibex/crypto/RSA.java @@ -1,3 +1,7 @@ +// 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. + package org.ibex.crypto; import java.math.BigInteger; import java.util.*; -- 1.7.10.4