I'm committing the attached patch which removes the $Revision CVS tags from the remaining gnu.crypto import stuff.
Changelog:
2006-04-13 Andrew John Hughes <[EMAIL PROTECTED]>
* gnu/javax/crypto/assembly/Assembly.java,
* gnu/javax/crypto/assembly/Cascade.java,
* gnu/javax/crypto/assembly/CascadeStage.java,
* gnu/javax/crypto/assembly/CascadeTransformer.java,
* gnu/javax/crypto/assembly/Direction.java,
* gnu/javax/crypto/assembly/LoopbackTransformer.java,
* gnu/javax/crypto/assembly/ModeStage.java,
* gnu/javax/crypto/assembly/Operation.java,
* gnu/javax/crypto/assembly/PaddingTransformer.java,
* gnu/javax/crypto/assembly/Stage.java,
* gnu/javax/crypto/assembly/Transformer.java,
* gnu/javax/crypto/cipher/Square.java,
* gnu/javax/crypto/jce/cipher/AESSpi.java,
* gnu/javax/crypto/jce/cipher/ARCFourSpi.java,
* gnu/javax/crypto/jce/cipher/AnubisSpi.java,
* gnu/javax/crypto/jce/cipher/BlowfishSpi.java,
* gnu/javax/crypto/jce/cipher/CipherAdapter.java,
* gnu/javax/crypto/jce/cipher/DESSpi.java,
* gnu/javax/crypto/jce/cipher/KhazadSpi.java,
* gnu/javax/crypto/jce/cipher/NullCipherSpi.java,
* gnu/javax/crypto/jce/cipher/PBES2.java,
* gnu/javax/crypto/jce/cipher/RijndaelSpi.java,
* gnu/javax/crypto/jce/cipher/SerpentSpi.java,
* gnu/javax/crypto/jce/cipher/SquareSpi.java,
* gnu/javax/crypto/jce/cipher/TripleDESSpi.java,
* gnu/javax/crypto/jce/cipher/TwofishSpi.java,
* gnu/javax/crypto/jce/mac/HMacMD2Spi.java,
* gnu/javax/crypto/jce/mac/HMacMD4Spi.java,
* gnu/javax/crypto/jce/mac/HMacMD5Spi.java,
* gnu/javax/crypto/jce/mac/HMacRipeMD128Spi.java,
* gnu/javax/crypto/jce/mac/HMacRipeMD160Spi.java,
* gnu/javax/crypto/jce/mac/HMacSHA160Spi.java,
* gnu/javax/crypto/jce/mac/HMacSHA256Spi.java,
* gnu/javax/crypto/jce/mac/HMacSHA384Spi.java,
* gnu/javax/crypto/jce/mac/HMacSHA512Spi.java,
* gnu/javax/crypto/jce/mac/HMacTigerSpi.java,
* gnu/javax/crypto/jce/mac/HMacWhirlpoolSpi.java,
* gnu/javax/crypto/jce/mac/MacAdapter.java,
* gnu/javax/crypto/jce/mac/TMMH16Spi.java,
* gnu/javax/crypto/jce/mac/UHash32Spi.java,
* gnu/javax/crypto/jce/mac/UMac32Spi.java,
* gnu/javax/crypto/key/dh/DiffieHellmanSender.java,
* gnu/javax/crypto/key/srp6/SRP6TLSServer.java,
* gnu/javax/crypto/keyring/PrivateKeyEntry.java,
* gnu/javax/crypto/mode/IAuthenticatedMode.java,
* gnu/javax/crypto/pad/WrongPaddingException.java,
* gnu/javax/crypto/prng/ICMGenerator.java,
* gnu/javax/crypto/prng/IPBE.java,
* gnu/javax/crypto/prng/PBKDF2.java,
* gnu/javax/crypto/sasl/ConfidentialityException.java,
* gnu/javax/crypto/sasl/IllegalMechanismStateException.java,
* gnu/javax/crypto/sasl/srp/IALG.java,
* gnu/javax/crypto/sasl/srp/SRPServer.java:
Remove CVS revision tags.
--
Andrew :-)
Please avoid sending me Microsoft Office (e.g. Word, PowerPoint) attachments.
See http://www.fsf.org/philosophy/no-word-attachments.html
If you use Microsoft Office, support movement towards the end of vendor lock-in:
http://opendocumentfellowship.org/petition/
"Value your freedom, or you will lose it, teaches history.
`Don't bother us with politics' respond those who don't want to learn."
-- Richard Stallman
Escape the Java Trap with GNU Classpath!
http://www.gnu.org/philosophy/java-trap.html
public class gcj extends Freedom implements Java { ... }
Index: gnu/javax/crypto/assembly/Assembly.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/javax/crypto/assembly/Assembly.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 Assembly.java
--- gnu/javax/crypto/assembly/Assembly.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/assembly/Assembly.java 13 Apr 2006 20:50:43 -0000
@@ -51,7 +51,6 @@ import java.util.Map;
* of the [EMAIL PROTECTED] Transformer} chain of the
<code>Assembly</code>.</p>
*
* @see Transformer
- * @version $Revision: 1.1 $
*/
public class Assembly
{
Index: gnu/javax/crypto/assembly/Cascade.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/javax/crypto/assembly/Cascade.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 Cascade.java
--- gnu/javax/crypto/assembly/Cascade.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/assembly/Cascade.java 13 Apr 2006 20:50:43 -0000
@@ -72,8 +72,6 @@ import java.util.Set;
* CRC Press, Inc. ISBN 0-8493-8523-7, 1997<br>
* Menezes, A., van Oorschot, P. and S. Vanstone.</li>
* </ol>
- *
- * @version $Revision: 1.1 $
*/
public class Cascade
{
Index: gnu/javax/crypto/assembly/CascadeStage.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/assembly/CascadeStage.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 CascadeStage.java
--- gnu/javax/crypto/assembly/CascadeStage.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/assembly/CascadeStage.java 13 Apr 2006 20:50:43 -0000
@@ -45,8 +45,6 @@ import java.util.Set;
/**
* <p>A Cascade <i>Stage</i> in a Cascade Cipher.</p>
- *
- * @version $Revision: 1.1 $
*/
class CascadeStage extends Stage
{
Index: gnu/javax/crypto/assembly/CascadeTransformer.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/assembly/CascadeTransformer.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 CascadeTransformer.java
--- gnu/javax/crypto/assembly/CascadeTransformer.java 26 Jan 2006 02:25:08
-0000 1.1
+++ gnu/javax/crypto/assembly/CascadeTransformer.java 13 Apr 2006 20:50:43
-0000
@@ -44,8 +44,6 @@ import java.util.Map;
/**
* An Adapter to use any [EMAIL PROTECTED] Cascade} as a [EMAIL PROTECTED]
Transformer} in an
* [EMAIL PROTECTED] Assembly}.
- *
- * @version $Revision: 1.1 $
*/
class CascadeTransformer extends Transformer
{
Index: gnu/javax/crypto/assembly/Direction.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/assembly/Direction.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 Direction.java
--- gnu/javax/crypto/assembly/Direction.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/assembly/Direction.java 13 Apr 2006 20:50:43 -0000
@@ -49,8 +49,6 @@ package gnu.javax.crypto.assembly;
* its inverse value</li>
* <li>REVERSED: equivalent to [EMAIL PROTECTED]
gnu.crypto.mode.IMode#DECRYPTION}.</li>
* </ol>
- *
- * @version $Revision: 1.1 $
*/
public final class Direction
{
Index: gnu/javax/crypto/assembly/LoopbackTransformer.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/assembly/LoopbackTransformer.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 LoopbackTransformer.java
--- gnu/javax/crypto/assembly/LoopbackTransformer.java 26 Jan 2006 02:25:08
-0000 1.1
+++ gnu/javax/crypto/assembly/LoopbackTransformer.java 13 Apr 2006 20:50:43
-0000
@@ -43,8 +43,6 @@ import java.util.Map;
/**
* A trivial [EMAIL PROTECTED] Transformer} to allow closing a chain in an
[EMAIL PROTECTED] Assembly}.
* This class is not visible outside this package.
- *
- * @version $Revision: 1.1 $
*/
final class LoopbackTransformer extends Transformer
{
Index: gnu/javax/crypto/assembly/ModeStage.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/assembly/ModeStage.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 ModeStage.java
--- gnu/javax/crypto/assembly/ModeStage.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/assembly/ModeStage.java 13 Apr 2006 20:50:43 -0000
@@ -53,8 +53,6 @@ import java.util.Set;
* <p>Such a stage wraps an implementation of a Block Cipher Mode of Operation
* ([EMAIL PROTECTED] IMode}) to allow inclusion of such an instance in a
cascade of block
* ciphers.</p>
- *
- * @version $Revision: 1.1 $
*/
class ModeStage extends Stage
{
Index: gnu/javax/crypto/assembly/Operation.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/assembly/Operation.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 Operation.java
--- gnu/javax/crypto/assembly/Operation.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/assembly/Operation.java 13 Apr 2006 20:50:43 -0000
@@ -51,8 +51,6 @@ package gnu.javax.crypto.assembly;
* the chain, and the resulting bytes are then processed by the current
* [EMAIL PROTECTED] Transformer}.</li>
* </ol>
- *
- * @version $Revision: 1.1 $
*/
public final class Operation
{
Index: gnu/javax/crypto/assembly/PaddingTransformer.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/assembly/PaddingTransformer.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 PaddingTransformer.java
--- gnu/javax/crypto/assembly/PaddingTransformer.java 26 Jan 2006 02:25:08
-0000 1.1
+++ gnu/javax/crypto/assembly/PaddingTransformer.java 13 Apr 2006 20:50:43
-0000
@@ -50,8 +50,6 @@ import java.util.Map;
* <p>When using such a [EMAIL PROTECTED] Transformer}, in an [EMAIL
PROTECTED] Assembly}, there must
* be at least one element behind this instance in the constructed chain;
* otherwise, a [EMAIL PROTECTED] TransformerException} is thrown at
initialisation time.</p>
- *
- * @version $Revision: 1.1 $
*/
class PaddingTransformer extends Transformer
{
Index: gnu/javax/crypto/assembly/Stage.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/javax/crypto/assembly/Stage.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 Stage.java
--- gnu/javax/crypto/assembly/Stage.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/assembly/Stage.java 13 Apr 2006 20:50:43 -0000
@@ -82,7 +82,6 @@ import java.util.Set;
*
* @see ModeStage
* @see CascadeStage
- * @version $Revision: 1.1 $
*/
public abstract class Stage
{
Index: gnu/javax/crypto/assembly/Transformer.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/assembly/Transformer.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 Transformer.java
--- gnu/javax/crypto/assembly/Transformer.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/assembly/Transformer.java 13 Apr 2006 20:50:43 -0000
@@ -77,7 +77,6 @@ import java.util.Map;
* @see CascadeTransformer
* @see PaddingTransformer
* @see DeflateTransformer
- * @version $Revision: 1.1 $
*/
public abstract class Transformer
{
Index: gnu/javax/crypto/cipher/Square.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/javax/crypto/cipher/Square.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 Square.java
--- gnu/javax/crypto/cipher/Square.java 26 Jan 2006 02:25:08 -0000 1.1
+++ gnu/javax/crypto/cipher/Square.java 13 Apr 2006 20:50:43 -0000
@@ -59,8 +59,6 @@ import java.util.Iterator;
* <a href="mailto:[EMAIL PROTECTED]">Lars Knudsen</a> and
* <a href="mailto:[EMAIL PROTECTED]">Vincent Rijmen</a>.</li>
* </ol>
- *
- * @version $Revision: 1.1 $
*/
public final class Square extends BaseCipher
{
@@ -517,4 +515,4 @@ public final class Square extends BaseCi
}
return valid.booleanValue();
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/cipher/AESSpi.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/javax/crypto/jce/cipher/AESSpi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 AESSpi.java
--- gnu/javax/crypto/jce/cipher/AESSpi.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/jce/cipher/AESSpi.java 13 Apr 2006 20:50:43 -0000
@@ -52,8 +52,6 @@ import java.security.spec.InvalidParamet
/**
* The implementation of the AES <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class AESSpi extends CipherAdapter
{
@@ -101,4 +99,4 @@ public final class AESSpi extends Cipher
}
engineInit(opmode, key, spec, random);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/cipher/ARCFourSpi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/cipher/ARCFourSpi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 ARCFourSpi.java
--- gnu/javax/crypto/jce/cipher/ARCFourSpi.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/jce/cipher/ARCFourSpi.java 13 Apr 2006 20:50:43 -0000
@@ -64,8 +64,6 @@ import javax.crypto.ShortBufferException
/**
* The <i>Service Provider Interface</i> (<b>SPI</b>) for the ARCFOUR
* stream cipher.
- *
- * @version $Revision: 1.1 $
*/
public class ARCFourSpi extends CipherSpi
{
@@ -205,4 +203,4 @@ public class ARCFourSpi extends CipherSp
{
return engineUpdate(in, inOffset, length, out, outOffset);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/cipher/AnubisSpi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/cipher/AnubisSpi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 AnubisSpi.java
--- gnu/javax/crypto/jce/cipher/AnubisSpi.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/jce/cipher/AnubisSpi.java 13 Apr 2006 20:50:43 -0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the Anubis <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class AnubisSpi extends CipherAdapter
{
@@ -56,4 +54,4 @@ public final class AnubisSpi extends Cip
{
super(Registry.ANUBIS_CIPHER);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/cipher/BlowfishSpi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/cipher/BlowfishSpi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 BlowfishSpi.java
--- gnu/javax/crypto/jce/cipher/BlowfishSpi.java 26 Jan 2006 02:25:08
-0000 1.1
+++ gnu/javax/crypto/jce/cipher/BlowfishSpi.java 13 Apr 2006 20:50:43
-0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the Blowfish <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class BlowfishSpi extends CipherAdapter
{
@@ -56,4 +54,4 @@ public final class BlowfishSpi extends C
{
super(Registry.BLOWFISH_CIPHER);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/cipher/CipherAdapter.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/cipher/CipherAdapter.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 CipherAdapter.java
--- gnu/javax/crypto/jce/cipher/CipherAdapter.java 26 Jan 2006 02:25:08
-0000 1.1
+++ gnu/javax/crypto/jce/cipher/CipherAdapter.java 13 Apr 2006 20:50:43
-0000
@@ -82,8 +82,6 @@ import javax.crypto.spec.IvParameterSpec
* and the initialization vector, the subclass should override those methods.
* Otherwise a subclass need only call the [EMAIL PROTECTED]
#CipherAdapter(String)}
* constructor with the name of the cipher.</p>
- *
- * @version $Revision: 1.1 $
*/
class CipherAdapter extends CipherSpi
{
@@ -504,4 +502,4 @@ class CipherAdapter extends CipherSpi
partBlock = new byte[blockLen];
partLen = 0;
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/cipher/DESSpi.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/javax/crypto/jce/cipher/DESSpi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 DESSpi.java
--- gnu/javax/crypto/jce/cipher/DESSpi.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/jce/cipher/DESSpi.java 13 Apr 2006 20:50:43 -0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the DES <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class DESSpi extends CipherAdapter
{
@@ -56,4 +54,4 @@ public final class DESSpi extends Cipher
{
super(Registry.DES_CIPHER);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/cipher/KhazadSpi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/cipher/KhazadSpi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 KhazadSpi.java
--- gnu/javax/crypto/jce/cipher/KhazadSpi.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/jce/cipher/KhazadSpi.java 13 Apr 2006 20:50:43 -0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the Khazad <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class KhazadSpi extends CipherAdapter
{
@@ -56,4 +54,4 @@ public final class KhazadSpi extends Cip
{
super(Registry.KHAZAD_CIPHER);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/cipher/NullCipherSpi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/cipher/NullCipherSpi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 NullCipherSpi.java
--- gnu/javax/crypto/jce/cipher/NullCipherSpi.java 26 Jan 2006 02:25:08
-0000 1.1
+++ gnu/javax/crypto/jce/cipher/NullCipherSpi.java 13 Apr 2006 20:50:43
-0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the Null cipher <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class NullCipherSpi extends CipherAdapter
{
@@ -56,4 +54,4 @@ public final class NullCipherSpi extends
{
super(Registry.NULL_CIPHER);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/cipher/PBES2.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/javax/crypto/jce/cipher/PBES2.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 PBES2.java
--- gnu/javax/crypto/jce/cipher/PBES2.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/jce/cipher/PBES2.java 13 Apr 2006 20:50:43 -0000
@@ -56,8 +56,6 @@ import javax.crypto.spec.SecretKeySpec;
/**
* <p>.</p>
- *
- * @version $Revision: 1.1 $
*/
public abstract class PBES2 extends CipherAdapter
{
@@ -1349,4 +1347,4 @@ public abstract class PBES2 extends Ciph
}
}
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/cipher/RijndaelSpi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/cipher/RijndaelSpi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 RijndaelSpi.java
--- gnu/javax/crypto/jce/cipher/RijndaelSpi.java 26 Jan 2006 02:25:08
-0000 1.1
+++ gnu/javax/crypto/jce/cipher/RijndaelSpi.java 13 Apr 2006 20:50:43
-0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the Rijndael <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class RijndaelSpi extends CipherAdapter
{
@@ -56,4 +54,4 @@ public final class RijndaelSpi extends C
{
super(Registry.RIJNDAEL_CIPHER, 16);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/cipher/SerpentSpi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/cipher/SerpentSpi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 SerpentSpi.java
--- gnu/javax/crypto/jce/cipher/SerpentSpi.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/jce/cipher/SerpentSpi.java 13 Apr 2006 20:50:43 -0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the Serpent <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class SerpentSpi extends CipherAdapter
{
@@ -56,4 +54,4 @@ public final class SerpentSpi extends Ci
{
super(Registry.SERPENT_CIPHER);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/cipher/SquareSpi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/cipher/SquareSpi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 SquareSpi.java
--- gnu/javax/crypto/jce/cipher/SquareSpi.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/jce/cipher/SquareSpi.java 13 Apr 2006 20:50:43 -0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the Square <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class SquareSpi extends CipherAdapter
{
@@ -56,4 +54,4 @@ public final class SquareSpi extends Cip
{
super(Registry.SQUARE_CIPHER);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/cipher/TripleDESSpi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/cipher/TripleDESSpi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 TripleDESSpi.java
--- gnu/javax/crypto/jce/cipher/TripleDESSpi.java 26 Jan 2006 02:25:08
-0000 1.1
+++ gnu/javax/crypto/jce/cipher/TripleDESSpi.java 13 Apr 2006 20:50:43
-0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the Triple-DES <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class TripleDESSpi extends CipherAdapter
{
@@ -56,4 +54,4 @@ public final class TripleDESSpi extends
{
super(Registry.TRIPLEDES_CIPHER);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/cipher/TwofishSpi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/cipher/TwofishSpi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 TwofishSpi.java
--- gnu/javax/crypto/jce/cipher/TwofishSpi.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/jce/cipher/TwofishSpi.java 13 Apr 2006 20:50:43 -0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the Twofish <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class TwofishSpi extends CipherAdapter
{
@@ -56,4 +54,4 @@ public final class TwofishSpi extends Ci
{
super(Registry.TWOFISH_CIPHER);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/mac/HMacMD2Spi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/mac/HMacMD2Spi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 HMacMD2Spi.java
--- gnu/javax/crypto/jce/mac/HMacMD2Spi.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/jce/mac/HMacMD2Spi.java 13 Apr 2006 20:50:43 -0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the HMAC-MD2 <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class HMacMD2Spi extends MacAdapter
{
@@ -56,4 +54,4 @@ public final class HMacMD2Spi extends Ma
{
super(Registry.HMAC_NAME_PREFIX + Registry.MD2_HASH);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/mac/HMacMD4Spi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/mac/HMacMD4Spi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 HMacMD4Spi.java
--- gnu/javax/crypto/jce/mac/HMacMD4Spi.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/jce/mac/HMacMD4Spi.java 13 Apr 2006 20:50:43 -0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the HMAC-MD4 <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class HMacMD4Spi extends MacAdapter
{
@@ -56,4 +54,4 @@ public final class HMacMD4Spi extends Ma
{
super(Registry.HMAC_NAME_PREFIX + Registry.MD4_HASH);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/mac/HMacMD5Spi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/mac/HMacMD5Spi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 HMacMD5Spi.java
--- gnu/javax/crypto/jce/mac/HMacMD5Spi.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/jce/mac/HMacMD5Spi.java 13 Apr 2006 20:50:43 -0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the HMAC-MD5 <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class HMacMD5Spi extends MacAdapter
{
@@ -56,4 +54,4 @@ public final class HMacMD5Spi extends Ma
{
super(Registry.HMAC_NAME_PREFIX + Registry.MD5_HASH);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/mac/HMacRipeMD128Spi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/mac/HMacRipeMD128Spi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 HMacRipeMD128Spi.java
--- gnu/javax/crypto/jce/mac/HMacRipeMD128Spi.java 26 Jan 2006 02:25:08
-0000 1.1
+++ gnu/javax/crypto/jce/mac/HMacRipeMD128Spi.java 13 Apr 2006 20:50:43
-0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the HMAC-RIPEMD-128 <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class HMacRipeMD128Spi extends MacAdapter
{
@@ -56,4 +54,4 @@ public final class HMacRipeMD128Spi exte
{
super(Registry.HMAC_NAME_PREFIX + Registry.RIPEMD128_HASH);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/mac/HMacRipeMD160Spi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/mac/HMacRipeMD160Spi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 HMacRipeMD160Spi.java
--- gnu/javax/crypto/jce/mac/HMacRipeMD160Spi.java 26 Jan 2006 02:25:08
-0000 1.1
+++ gnu/javax/crypto/jce/mac/HMacRipeMD160Spi.java 13 Apr 2006 20:50:43
-0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the HMAC-RIPEMD-160 <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class HMacRipeMD160Spi extends MacAdapter
{
@@ -56,4 +54,4 @@ public final class HMacRipeMD160Spi exte
{
super(Registry.HMAC_NAME_PREFIX + Registry.RIPEMD160_HASH);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/mac/HMacSHA160Spi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/mac/HMacSHA160Spi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 HMacSHA160Spi.java
--- gnu/javax/crypto/jce/mac/HMacSHA160Spi.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/jce/mac/HMacSHA160Spi.java 13 Apr 2006 20:50:43 -0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the HMAC-SHA-160 <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class HMacSHA160Spi extends MacAdapter
{
@@ -56,4 +54,4 @@ public final class HMacSHA160Spi extends
{
super(Registry.HMAC_NAME_PREFIX + Registry.SHA160_HASH);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/mac/HMacSHA256Spi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/mac/HMacSHA256Spi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 HMacSHA256Spi.java
--- gnu/javax/crypto/jce/mac/HMacSHA256Spi.java 26 Jan 2006 02:25:08 -0000
1.1
+++ gnu/javax/crypto/jce/mac/HMacSHA256Spi.java 13 Apr 2006 20:50:43 -0000
@@ -42,8 +42,6 @@ import gnu.java.security.Registry;
/**
* <p>The implementation of the HMAC-SHA-256 <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.</p>
- *
- * @version $Revision: 1.1 $
*/
public final class HMacSHA256Spi extends MacAdapter
{
@@ -64,4 +62,4 @@ public final class HMacSHA256Spi extends
// Instance methods
// -------------------------------------------------------------------------
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/mac/HMacSHA384Spi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/mac/HMacSHA384Spi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 HMacSHA384Spi.java
--- gnu/javax/crypto/jce/mac/HMacSHA384Spi.java 26 Jan 2006 02:25:09 -0000
1.1
+++ gnu/javax/crypto/jce/mac/HMacSHA384Spi.java 13 Apr 2006 20:50:43 -0000
@@ -42,8 +42,6 @@ import gnu.java.security.Registry;
/**
* <p>The implementation of the HMAC-SHA-384 <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.</p>
- *
- * @version $Revision: 1.1 $
*/
public class HMacSHA384Spi extends MacAdapter
{
@@ -64,4 +62,4 @@ public class HMacSHA384Spi extends MacAd
// Instance methods
// -------------------------------------------------------------------------
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/mac/HMacSHA512Spi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/mac/HMacSHA512Spi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 HMacSHA512Spi.java
--- gnu/javax/crypto/jce/mac/HMacSHA512Spi.java 26 Jan 2006 02:25:09 -0000
1.1
+++ gnu/javax/crypto/jce/mac/HMacSHA512Spi.java 13 Apr 2006 20:50:43 -0000
@@ -42,8 +42,6 @@ import gnu.java.security.Registry;
/**
* <p>The implementation of the HMAC-SHA-512 <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.</p>
- *
- * @version $Revision: 1.1 $
*/
public class HMacSHA512Spi extends MacAdapter
{
@@ -64,4 +62,4 @@ public class HMacSHA512Spi extends MacAd
// Instance methods
// -------------------------------------------------------------------------
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/mac/HMacTigerSpi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/mac/HMacTigerSpi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 HMacTigerSpi.java
--- gnu/javax/crypto/jce/mac/HMacTigerSpi.java 26 Jan 2006 02:25:09 -0000
1.1
+++ gnu/javax/crypto/jce/mac/HMacTigerSpi.java 13 Apr 2006 20:50:43 -0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the Tiger <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class HMacTigerSpi extends MacAdapter
{
@@ -56,4 +54,4 @@ public final class HMacTigerSpi extends
{
super(Registry.HMAC_NAME_PREFIX + Registry.TIGER_HASH);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/mac/HMacWhirlpoolSpi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/mac/HMacWhirlpoolSpi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 HMacWhirlpoolSpi.java
--- gnu/javax/crypto/jce/mac/HMacWhirlpoolSpi.java 26 Jan 2006 02:25:09
-0000 1.1
+++ gnu/javax/crypto/jce/mac/HMacWhirlpoolSpi.java 13 Apr 2006 20:50:43
-0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the HMAC-Whirlpool <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class HMacWhirlpoolSpi extends MacAdapter
{
@@ -56,4 +54,4 @@ public final class HMacWhirlpoolSpi exte
{
super(Registry.HMAC_NAME_PREFIX + Registry.WHIRLPOOL_HASH);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/mac/MacAdapter.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/mac/MacAdapter.java,v
retrieving revision 1.2
diff -u -3 -p -u -r1.2 MacAdapter.java
--- gnu/javax/crypto/jce/mac/MacAdapter.java 28 Jan 2006 06:50:58 -0000
1.2
+++ gnu/javax/crypto/jce/mac/MacAdapter.java 13 Apr 2006 20:50:43 -0000
@@ -57,8 +57,6 @@ import javax.crypto.MacSpi;
* the [EMAIL PROTECTED] javax.crypto.Mac} class, which provides the
functionality of a
* message authentication code algorithm, such as the <i>Hashed Message
* Authentication Code</i> (<b>HMAC</b>) algorithms.</p>
- *
- * @version $Revision: 1.2 $
*/
class MacAdapter extends MacSpi implements Cloneable
{
@@ -153,4 +151,4 @@ class MacAdapter extends MacSpi implemen
{
mac.update(in, off, len);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/mac/TMMH16Spi.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/javax/crypto/jce/mac/TMMH16Spi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 TMMH16Spi.java
--- gnu/javax/crypto/jce/mac/TMMH16Spi.java 26 Jan 2006 02:25:09 -0000
1.1
+++ gnu/javax/crypto/jce/mac/TMMH16Spi.java 13 Apr 2006 20:50:43 -0000
@@ -50,8 +50,6 @@ import java.security.spec.AlgorithmParam
/**
* The implementation of the TMMH16 <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class TMMH16Spi extends MacAdapter
{
@@ -88,4 +86,4 @@ public final class TMMH16Spi extends Mac
throw new InvalidAlgorithmParameterException(iae.getMessage());
}
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/mac/UHash32Spi.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/jce/mac/UHash32Spi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 UHash32Spi.java
--- gnu/javax/crypto/jce/mac/UHash32Spi.java 26 Jan 2006 02:25:09 -0000
1.1
+++ gnu/javax/crypto/jce/mac/UHash32Spi.java 13 Apr 2006 20:50:43 -0000
@@ -43,8 +43,6 @@ import gnu.java.security.Registry;
/**
* The implementation of the UHash-32 <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class UHash32Spi extends MacAdapter
{
@@ -56,4 +54,4 @@ public final class UHash32Spi extends Ma
{
super(Registry.UHASH32);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/jce/mac/UMac32Spi.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/javax/crypto/jce/mac/UMac32Spi.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 UMac32Spi.java
--- gnu/javax/crypto/jce/mac/UMac32Spi.java 26 Jan 2006 02:25:09 -0000
1.1
+++ gnu/javax/crypto/jce/mac/UMac32Spi.java 13 Apr 2006 20:50:43 -0000
@@ -50,8 +50,6 @@ import java.security.spec.AlgorithmParam
/**
* The implementation of the UMAC-32 <i>Service Provider Interface</i>
* (<b>SPI</b>) adapter.
- *
- * @version $Revision: 1.1 $
*/
public final class UMac32Spi extends MacAdapter
{
@@ -88,4 +86,4 @@ public final class UMac32Spi extends Mac
throw new InvalidAlgorithmParameterException(iae.getMessage());
}
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/key/dh/DiffieHellmanSender.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/key/dh/DiffieHellmanSender.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 DiffieHellmanSender.java
--- gnu/javax/crypto/key/dh/DiffieHellmanSender.java 26 Jan 2006 02:25:09
-0000 1.1
+++ gnu/javax/crypto/key/dh/DiffieHellmanSender.java 13 Apr 2006 20:50:43
-0000
@@ -55,7 +55,6 @@ import javax.crypto.interfaces.DHPrivate
* Diffie-Hellman key agreement exchange (A in [HAC]).</p>
*
* @see DiffieHellmanKeyAgreement
- * @version $Revision: 1.1 $
*/
public class DiffieHellmanSender extends DiffieHellmanKeyAgreement
{
Index: gnu/javax/crypto/key/srp6/SRP6TLSServer.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/key/srp6/SRP6TLSServer.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 SRP6TLSServer.java
--- gnu/javax/crypto/key/srp6/SRP6TLSServer.java 26 Jan 2006 02:25:09
-0000 1.1
+++ gnu/javax/crypto/key/srp6/SRP6TLSServer.java 13 Apr 2006 20:50:43
-0000
@@ -61,8 +61,6 @@ import java.util.Map;
* SRP for TLS Authentication</a>. The only difference between it and the SASL
* variant is that the shared secret is the entity <code>S</code> and not
* <code>H(S)</code>.</p>
- *
- * @version $Revision: 1.1 $
*/
public class SRP6TLSServer extends SRP6KeyAgreement
{
Index: gnu/javax/crypto/keyring/PrivateKeyEntry.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/keyring/PrivateKeyEntry.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 PrivateKeyEntry.java
--- gnu/javax/crypto/keyring/PrivateKeyEntry.java 26 Jan 2006 02:25:09
-0000 1.1
+++ gnu/javax/crypto/keyring/PrivateKeyEntry.java 13 Apr 2006 20:50:44
-0000
@@ -57,8 +57,6 @@ import java.util.Date;
/**
* <p>An immutable class representing a private or secret key entry.</p>
- *
- * @version $Revision: 1.1 $
*/
public final class PrivateKeyEntry extends PrimitiveEntry
{
Index: gnu/javax/crypto/mode/IAuthenticatedMode.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/mode/IAuthenticatedMode.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 IAuthenticatedMode.java
--- gnu/javax/crypto/mode/IAuthenticatedMode.java 26 Jan 2006 02:25:09
-0000 1.1
+++ gnu/javax/crypto/mode/IAuthenticatedMode.java 13 Apr 2006 20:50:44
-0000
@@ -50,11 +50,9 @@ import gnu.javax.crypto.mac.IMac;
* is done via the [EMAIL PROTECTED] IMac#digest()} method, and header updating
* (if supported by the mode) is done via the [EMAIL PROTECTED]
* IMac#update(byte[],int,int)} method.
- *
- * @version $Revision: 1.1 $
*/
public interface IAuthenticatedMode extends IMode, IMac
{
// Trivial conjunction of IMode and IMac.
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/pad/WrongPaddingException.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/pad/WrongPaddingException.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 WrongPaddingException.java
--- gnu/javax/crypto/pad/WrongPaddingException.java 26 Jan 2006 02:25:09
-0000 1.1
+++ gnu/javax/crypto/pad/WrongPaddingException.java 13 Apr 2006 20:50:44
-0000
@@ -41,8 +41,6 @@ package gnu.javax.crypto.pad;
/**
* <p>A checked exception that indicates that a padding algorithm did not find
the
* expected padding bytes when unpadding some data.</p>
- *
- * @version $Revision: 1.1 $
*/
public class WrongPaddingException extends Exception
{
@@ -60,4 +58,4 @@ public class WrongPaddingException exten
// Instant methods
// -------------------------------------------------------------------------
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/prng/ICMGenerator.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/javax/crypto/prng/ICMGenerator.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 ICMGenerator.java
--- gnu/javax/crypto/prng/ICMGenerator.java 26 Jan 2006 02:25:09 -0000
1.1
+++ gnu/javax/crypto/prng/ICMGenerator.java 13 Apr 2006 20:50:44 -0000
@@ -98,8 +98,6 @@ import java.util.Map;
* <li><a
href="http://www.ietf.org/internet-drafts/draft-mcgrew-saag-icm-00.txt">
* Integer Counter Mode</a>, David A. McGrew.</li>
* </ol>
- *
- * @version $Revision: 1.1 $
*/
public class ICMGenerator extends BasePRNG implements Cloneable
{
@@ -376,4 +374,4 @@ public class ICMGenerator extends BasePR
cipher.encryptBlock(buffer, 0, buffer, 0);
blockNdx = blockNdx.add(BigInteger.ONE); // increment blockNdx
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/prng/IPBE.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/javax/crypto/prng/IPBE.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 IPBE.java
--- gnu/javax/crypto/prng/IPBE.java 26 Jan 2006 02:25:09 -0000 1.1
+++ gnu/javax/crypto/prng/IPBE.java 13 Apr 2006 20:50:44 -0000
@@ -40,8 +40,6 @@ package gnu.javax.crypto.prng;
/**
* <p>Trivial interface to group Password-based encryption property names.</p>
- *
- * @version $Revision: 1.1 $
*/
public interface IPBE
{
@@ -66,4 +64,4 @@ public interface IPBE
* with this is expected to be a byte array.
*/
public static final String SALT = "gnu.crypto.pbe.salt";
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/prng/PBKDF2.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/javax/crypto/prng/PBKDF2.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 PBKDF2.java
--- gnu/javax/crypto/prng/PBKDF2.java 26 Jan 2006 02:25:09 -0000 1.1
+++ gnu/javax/crypto/prng/PBKDF2.java 13 Apr 2006 20:50:44 -0000
@@ -62,8 +62,6 @@ import java.util.Map;
* <li>B. Kaliski, <a href="http://www.ietf.org/rfc/rfc2898.txt">RFC 2898:
* Password-Based Cryptography Specification, Version 2.0</a></li>
* </ol>
- *
- * @version $Revision: 1.1 $
*/
public class PBKDF2 extends BasePRNG implements Cloneable
{
@@ -213,4 +211,4 @@ public class PBKDF2 extends BasePRNG imp
}
}
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/sasl/ConfidentialityException.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/sasl/ConfidentialityException.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 ConfidentialityException.java
--- gnu/javax/crypto/sasl/ConfidentialityException.java 26 Jan 2006 02:25:09
-0000 1.1
+++ gnu/javax/crypto/sasl/ConfidentialityException.java 13 Apr 2006 20:50:44
-0000
@@ -44,8 +44,6 @@ import javax.security.sasl.SaslException
* Used by mechanisms that offer a security services layer, this checked
* exception is thrown to indicate that a violation has occured during the
* processing of a <i>confidentiality</i> protection filter.
- *
- * @version $Revision: 1.1 $
*/
public class ConfidentialityException extends SaslException
{
@@ -81,4 +79,4 @@ public class ConfidentialityException ex
{
super(s, x);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/sasl/IllegalMechanismStateException.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/sasl/IllegalMechanismStateException.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 IllegalMechanismStateException.java
--- gnu/javax/crypto/sasl/IllegalMechanismStateException.java 26 Jan 2006
02:25:09 -0000 1.1
+++ gnu/javax/crypto/sasl/IllegalMechanismStateException.java 13 Apr 2006
20:50:44 -0000
@@ -46,8 +46,6 @@ import javax.security.sasl.Authenticatio
* that mechanism was not completed yet, or that an operation that should be
* invoked on incomplete mechanisms was invoked but the authentication phase of
* that mechanism was already completed.
- *
- * @version $Revision: 1.1 $
*/
public class IllegalMechanismStateException extends AuthenticationException
{
@@ -83,4 +81,4 @@ public class IllegalMechanismStateExcept
{
super(detail, ex);
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/sasl/srp/IALG.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/javax/crypto/sasl/srp/IALG.java,v
retrieving revision 1.1
diff -u -3 -p -u -r1.1 IALG.java
--- gnu/javax/crypto/sasl/srp/IALG.java 26 Jan 2006 02:25:10 -0000 1.1
+++ gnu/javax/crypto/sasl/srp/IALG.java 13 Apr 2006 20:50:44 -0000
@@ -50,8 +50,6 @@ import javax.security.sasl.SaslException
/**
* <p>A Factory class that returns IALG (Integrity Algorithm) instances that
* operate as described in the draft-burdis-cat-sasl-srp-04 and later.</p>
- *
- * @version $Revision: 1.1 $
*/
public final class IALG implements Cloneable
{
@@ -156,4 +154,4 @@ public final class IALG implements Clone
{
return hmac.macSize();
}
-}
\ No newline at end of file
+}
Index: gnu/javax/crypto/sasl/srp/SRPServer.java
===================================================================
RCS file:
/cvsroot/classpath/classpath/gnu/javax/crypto/sasl/srp/SRPServer.java,v
retrieving revision 1.2
diff -u -3 -p -u -r1.2 SRPServer.java
--- gnu/javax/crypto/sasl/srp/SRPServer.java 3 Feb 2006 19:29:01 -0000
1.2
+++ gnu/javax/crypto/sasl/srp/SRPServer.java 13 Apr 2006 20:50:44 -0000
@@ -72,8 +72,6 @@ import javax.security.sasl.SaslServer;
/**
* <p>The SASL-SRP server-side mechanism.</p>
- *
- * @version $Revision: 1.2 $
*/
public class SRPServer extends ServerMechanism implements SaslServer
{
@@ -1153,4 +1151,4 @@ public class SRPServer extends ServerMec
return prng;
}
-}
\ No newline at end of file
+}
signature.asc
Description: Digital signature
