summaryrefslogtreecommitdiff
path: root/gnu/javax/crypto/keyring
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/javax/crypto/keyring')
-rw-r--r--gnu/javax/crypto/keyring/AuthenticatedEntry.java6
-rw-r--r--gnu/javax/crypto/keyring/BaseKeyring.java2
-rw-r--r--gnu/javax/crypto/keyring/BinaryDataEntry.java8
-rw-r--r--gnu/javax/crypto/keyring/CertPathEntry.java2
-rw-r--r--gnu/javax/crypto/keyring/CertificateEntry.java6
-rw-r--r--gnu/javax/crypto/keyring/CompressedEntry.java2
-rw-r--r--gnu/javax/crypto/keyring/EncryptedEntry.java2
-rw-r--r--gnu/javax/crypto/keyring/Entry.java8
-rw-r--r--gnu/javax/crypto/keyring/EnvelopeEntry.java18
-rw-r--r--gnu/javax/crypto/keyring/GnuPrivateKeyring.java4
-rw-r--r--gnu/javax/crypto/keyring/GnuPublicKeyring.java2
-rw-r--r--gnu/javax/crypto/keyring/IKeyring.java18
-rw-r--r--gnu/javax/crypto/keyring/IPrivateKeyring.java20
-rw-r--r--gnu/javax/crypto/keyring/IPublicKeyring.java10
-rw-r--r--gnu/javax/crypto/keyring/MalformedKeyringException.java2
-rw-r--r--gnu/javax/crypto/keyring/MaskableEnvelopeEntry.java6
-rw-r--r--gnu/javax/crypto/keyring/MeteredInputStream.java4
-rw-r--r--gnu/javax/crypto/keyring/PasswordAuthenticatedEntry.java2
-rw-r--r--gnu/javax/crypto/keyring/PasswordEncryptedEntry.java2
-rw-r--r--gnu/javax/crypto/keyring/PasswordProtectedEntry.java4
-rw-r--r--gnu/javax/crypto/keyring/PrimitiveEntry.java6
-rw-r--r--gnu/javax/crypto/keyring/PrivateKeyEntry.java6
-rw-r--r--gnu/javax/crypto/keyring/Properties.java18
-rw-r--r--gnu/javax/crypto/keyring/PublicKeyEntry.java4
24 files changed, 81 insertions, 81 deletions
diff --git a/gnu/javax/crypto/keyring/AuthenticatedEntry.java b/gnu/javax/crypto/keyring/AuthenticatedEntry.java
index cd2e5868d..91c3bc6e2 100644
--- a/gnu/javax/crypto/keyring/AuthenticatedEntry.java
+++ b/gnu/javax/crypto/keyring/AuthenticatedEntry.java
@@ -1,4 +1,4 @@
-/* AuthenticatedEntry.java --
+/* AuthenticatedEntry.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -90,7 +90,7 @@ public final class AuthenticatedEntry
/**
* Computes the mac over this envelope's data. This method <b>must</b> be
* called before this entry in encoded.
- *
+ *
* @param key The key to authenticate with.
* @throws IOException If encoding fails.
* @throws InvalidKeyException If the supplied key is bad.
@@ -115,7 +115,7 @@ public final class AuthenticatedEntry
/**
* Verifies this entry's payload. This method will unmask this entry, thus it
* must be called before accessing its contents.
- *
+ *
* @param key The key to use to authenticate.
* @throws InvalidKeyException If the given key is improper.
*/
diff --git a/gnu/javax/crypto/keyring/BaseKeyring.java b/gnu/javax/crypto/keyring/BaseKeyring.java
index 369507d4c..e93ca8fa3 100644
--- a/gnu/javax/crypto/keyring/BaseKeyring.java
+++ b/gnu/javax/crypto/keyring/BaseKeyring.java
@@ -1,4 +1,4 @@
-/* BaseKeyring.java --
+/* BaseKeyring.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/gnu/javax/crypto/keyring/BinaryDataEntry.java b/gnu/javax/crypto/keyring/BinaryDataEntry.java
index e694487e1..8fb1e0f39 100644
--- a/gnu/javax/crypto/keyring/BinaryDataEntry.java
+++ b/gnu/javax/crypto/keyring/BinaryDataEntry.java
@@ -1,4 +1,4 @@
-/* BinaryDataEntry.java --
+/* BinaryDataEntry.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -53,7 +53,7 @@ public class BinaryDataEntry
/**
* Creates a new binary data entry.
- *
+ *
* @param contentType The content type of this entry. This parameter can be
* <code>null</code> if no content type is needed.
* @param data The data.
@@ -86,7 +86,7 @@ public class BinaryDataEntry
/**
* Returns the content type of this entry, or <code>null</code> if this
* property is not set.
- *
+ *
* @return The content type.
*/
public String getContentType()
@@ -96,7 +96,7 @@ public class BinaryDataEntry
/**
* Returns this object's data field.
- *
+ *
* @return The data.
*/
public byte[] getData()
diff --git a/gnu/javax/crypto/keyring/CertPathEntry.java b/gnu/javax/crypto/keyring/CertPathEntry.java
index 32b86084f..e798a93ce 100644
--- a/gnu/javax/crypto/keyring/CertPathEntry.java
+++ b/gnu/javax/crypto/keyring/CertPathEntry.java
@@ -1,4 +1,4 @@
-/* CertPathEntry.java --
+/* CertPathEntry.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/gnu/javax/crypto/keyring/CertificateEntry.java b/gnu/javax/crypto/keyring/CertificateEntry.java
index 661758442..f574a4fe4 100644
--- a/gnu/javax/crypto/keyring/CertificateEntry.java
+++ b/gnu/javax/crypto/keyring/CertificateEntry.java
@@ -1,4 +1,4 @@
-/* CertificateEntry.java --
+/* CertificateEntry.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -58,7 +58,7 @@ public final class CertificateEntry
/**
* Creates a new certificate entry.
- *
+ *
* @param certificate The certificate.
* @param creationDate The creation date.
* @param properties The alias.
@@ -106,7 +106,7 @@ public final class CertificateEntry
/**
* Returns this entry's certificate.
- *
+ *
* @return The certificate.
*/
public Certificate getCertificate()
diff --git a/gnu/javax/crypto/keyring/CompressedEntry.java b/gnu/javax/crypto/keyring/CompressedEntry.java
index b24c6715a..8949a41e9 100644
--- a/gnu/javax/crypto/keyring/CompressedEntry.java
+++ b/gnu/javax/crypto/keyring/CompressedEntry.java
@@ -1,4 +1,4 @@
-/* CompressedEntry.java --
+/* CompressedEntry.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/gnu/javax/crypto/keyring/EncryptedEntry.java b/gnu/javax/crypto/keyring/EncryptedEntry.java
index f0693cc91..68a6c2c8a 100644
--- a/gnu/javax/crypto/keyring/EncryptedEntry.java
+++ b/gnu/javax/crypto/keyring/EncryptedEntry.java
@@ -1,4 +1,4 @@
-/* EncryptedEntry.java --
+/* EncryptedEntry.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/gnu/javax/crypto/keyring/Entry.java b/gnu/javax/crypto/keyring/Entry.java
index ef225db95..d45924940 100644
--- a/gnu/javax/crypto/keyring/Entry.java
+++ b/gnu/javax/crypto/keyring/Entry.java
@@ -1,4 +1,4 @@
-/* Entry.java --
+/* Entry.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -71,7 +71,7 @@ public abstract class Entry
/**
* Creates a new Entry.
- *
+ *
* @param type This entry's type.
* @param properties This entry's properties.
* @throws IllegalArgumentException If the properties argument is null, or if
@@ -101,7 +101,7 @@ public abstract class Entry
/**
* Returns this entry's properties object. The properties are cloned before
* being returned.
- *
+ *
* @return The properties.
*/
public Properties getProperties()
@@ -122,7 +122,7 @@ public abstract class Entry
/**
* This method is called when this entry needs to be written to an output
* stream.
- *
+ *
* @param out The stream to write to.
* @throws IOException If an I/O exception occurs.
*/
diff --git a/gnu/javax/crypto/keyring/EnvelopeEntry.java b/gnu/javax/crypto/keyring/EnvelopeEntry.java
index fe39091b0..76aba7d7b 100644
--- a/gnu/javax/crypto/keyring/EnvelopeEntry.java
+++ b/gnu/javax/crypto/keyring/EnvelopeEntry.java
@@ -1,4 +1,4 @@
-/* EnvelopeEntry.java --
+/* EnvelopeEntry.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -80,7 +80,7 @@ public abstract class EnvelopeEntry
/**
* Adds an entry to this envelope.
- *
+ *
* @param entry The entry to add.
*/
public void add(Entry entry)
@@ -102,7 +102,7 @@ public abstract class EnvelopeEntry
/**
* Tests if this envelope contains a primitive entry with the given alias.
- *
+ *
* @param alias The alias to test.
* @return True if this envelope (or one of the contained envelopes) contains
* a primitive entry with the given alias.
@@ -133,7 +133,7 @@ public abstract class EnvelopeEntry
/**
* Tests if this envelope contains the given entry.
- *
+ *
* @param entry The entry to test.
* @return True if this envelope contains the given entry.
*/
@@ -156,7 +156,7 @@ public abstract class EnvelopeEntry
/**
* Returns a copy of all entries this envelope contains.
- *
+ *
* @return All contained entries.
*/
public List getEntries()
@@ -167,7 +167,7 @@ public abstract class EnvelopeEntry
/**
* Gets all primitive entries that have the given alias. If there are any
* masked entries that contain the given alias, they will be returned as well.
- *
+ *
* @param alias The alias of the entries to get.
* @return A list of all primitive entries that have the given alias.
*/
@@ -214,7 +214,7 @@ public abstract class EnvelopeEntry
/**
* Returns the list of all aliases contained by this envelope, separated by a
* semicolon (';').
- *
+ *
* @return The list of aliases.
*/
public String getAliasList()
@@ -228,7 +228,7 @@ public abstract class EnvelopeEntry
/**
* Removes the specified entry.
- *
+ *
* @param entry The entry.
* @return True if an entry was removed.
*/
@@ -280,7 +280,7 @@ public abstract class EnvelopeEntry
/**
* Removes all primitive entries that have the specified alias.
- *
+ *
* @param alias The alias of the entries to remove.
* @return <code>true</code> if <code>alias</code> was present and was
* successfully trmoved. Returns <code>false</code> if
diff --git a/gnu/javax/crypto/keyring/GnuPrivateKeyring.java b/gnu/javax/crypto/keyring/GnuPrivateKeyring.java
index 2ccdad6b3..ab3933972 100644
--- a/gnu/javax/crypto/keyring/GnuPrivateKeyring.java
+++ b/gnu/javax/crypto/keyring/GnuPrivateKeyring.java
@@ -1,4 +1,4 @@
-/* GnuPrivateKeyring.java --
+/* GnuPrivateKeyring.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -56,7 +56,7 @@ import java.util.logging.Level;
import java.util.logging.Logger;
/**
- *
+ *
*/
public class GnuPrivateKeyring
extends BaseKeyring
diff --git a/gnu/javax/crypto/keyring/GnuPublicKeyring.java b/gnu/javax/crypto/keyring/GnuPublicKeyring.java
index 5243919c3..d7387f892 100644
--- a/gnu/javax/crypto/keyring/GnuPublicKeyring.java
+++ b/gnu/javax/crypto/keyring/GnuPublicKeyring.java
@@ -1,4 +1,4 @@
-/* GnuPublicKeyring.java --
+/* GnuPublicKeyring.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/gnu/javax/crypto/keyring/IKeyring.java b/gnu/javax/crypto/keyring/IKeyring.java
index 44d537700..141f2dcd4 100644
--- a/gnu/javax/crypto/keyring/IKeyring.java
+++ b/gnu/javax/crypto/keyring/IKeyring.java
@@ -1,4 +1,4 @@
-/* IKeyring.java --
+/* IKeyring.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -79,7 +79,7 @@ public interface IKeyring
* <p>
* What happens to the current contents of this keyring? are the new ones
* merged with the current ones or do they simply replace them?
- *
+ *
* @param attributes The attributes that designate the source where the store
* is to be loaded from. What happens
* @throws IllegalArgumentException If the attributes are inappropriate.
@@ -92,7 +92,7 @@ public interface IKeyring
/**
* Stores the contents of this keyring to persistent storage as specified by
* the designated <code>attributes</code>.
- *
+ *
* @param attributes the attributes that define where the contents of this
* keyring will be stored.
* @throws IOException if an exception occurs during the process.
@@ -107,7 +107,7 @@ public interface IKeyring
/**
* Returns the number of entries in this keyring.
- *
+ *
* @return The number of current entries in this keyring.
*/
int size();
@@ -115,7 +115,7 @@ public interface IKeyring
/**
* Returns an {@link Enumeration} of all aliases (instances of {@link String})
* in this keyring.
- *
+ *
* @return The enumeration of {@link String}s each representing an <i>alias</i>
* found in this keyring.
*/
@@ -123,7 +123,7 @@ public interface IKeyring
/**
* Tests whether or not this keyring contains the given alias.
- *
+ *
* @param alias The alias to check.
* @return true if this keyring contains the alias.
*/
@@ -133,7 +133,7 @@ public interface IKeyring
* Returns a {@link List} of entries (instances of {@link Entry}) for the
* given <code>alias</code>, or <code>null</code> if there no such entry
* exists.
- *
+ *
* @param alias The alias of the entry(ies) to return.
* @return A list of all entries (instances of {@link Entry} that have the
* given <code>alias</code>, or <code>null</code> if no one
@@ -145,7 +145,7 @@ public interface IKeyring
* Adds a designated {@link Entry} to this keyring.
* <p>
* What happens if there is already an entry with the same alias?
- *
+ *
* @param entry The entry to put in this keyring.
*/
void add(Entry entry);
@@ -155,7 +155,7 @@ public interface IKeyring
* keyring. Does nothing if there was no such entry.
* <p>
* What happens if there are more than one?
- *
+ *
* @param alias The alias of the entry to remove.
*/
void remove(String alias);
diff --git a/gnu/javax/crypto/keyring/IPrivateKeyring.java b/gnu/javax/crypto/keyring/IPrivateKeyring.java
index 9e2ceab9b..3bfa10098 100644
--- a/gnu/javax/crypto/keyring/IPrivateKeyring.java
+++ b/gnu/javax/crypto/keyring/IPrivateKeyring.java
@@ -1,4 +1,4 @@
-/* IPrivateKeyring.java --
+/* IPrivateKeyring.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -56,7 +56,7 @@ public interface IPrivateKeyring
/**
* Tests if this keyring contains a private key entry with the given
* <code>alias</code>.
- *
+ *
* @param alias The alias to check.
* @return <code>true</code> if this keyring contains a private key with the
* given <code>alias</code>; <code>false</code> otherwise.
@@ -65,7 +65,7 @@ public interface IPrivateKeyring
/**
* Returns the private key with the given <code>alias</code>.
- *
+ *
* @param alias The alias of the private key to find.
* @param password The password of the private key.
* @return The private, or secret, key if one is found; <code>null</code> if
@@ -78,7 +78,7 @@ public interface IPrivateKeyring
/**
* Adds a private key to this keyring.
- *
+ *
* @param alias The alias of the private key.
* @param key The private key.
* @param password The password used to protect this private key.
@@ -88,7 +88,7 @@ public interface IPrivateKeyring
/**
* Checks if this keyring contains a public key with the given
* <code>alias</code>.
- *
+ *
* @param alias The alias to test.
* @return <code>true</code> if this keyring contains a public key entry
* with the given <code>alias</code>; <code>false</code>
@@ -99,7 +99,7 @@ public interface IPrivateKeyring
/**
* Returns the public key with the given <code>alias</code>, or
* <code>null</code> if there is no such entry.
- *
+ *
* @param alias The alias of the public key to find.
* @return The public key; or <code>null</code> if none were found.
*/
@@ -107,7 +107,7 @@ public interface IPrivateKeyring
/**
* Sets a public key entry.
- *
+ *
* @param alias The alias for this public key.
* @param key The public key.
*/
@@ -116,7 +116,7 @@ public interface IPrivateKeyring
/**
* Checks if this keyring contains a certificate path with the given
* <code>alias</code>.
- *
+ *
* @param alias The alias to check.
* @return <code>true</code> if this keyring contains a certificate path
* with the given <code>alias</code>; <code>false</code>
@@ -127,7 +127,7 @@ public interface IPrivateKeyring
/**
* Returns the certificate path with the given <code>alias</code>, or
* <code>null</code> if there is no such entry.
- *
+ *
* @param alias The alias of the certificate path to find.
* @return The certificate path for the designated <code>alias</code>; or
* <code>null</code> if none were found.
@@ -136,7 +136,7 @@ public interface IPrivateKeyring
/**
* Sets a certificate path entry.
- *
+ *
* @param alias The alias for this certificate path.
* @param path The certificate path.
*/
diff --git a/gnu/javax/crypto/keyring/IPublicKeyring.java b/gnu/javax/crypto/keyring/IPublicKeyring.java
index efe568f18..d723f5ae9 100644
--- a/gnu/javax/crypto/keyring/IPublicKeyring.java
+++ b/gnu/javax/crypto/keyring/IPublicKeyring.java
@@ -1,4 +1,4 @@
-/* IPublicKeyring.java --
+/* IPublicKeyring.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -43,7 +43,7 @@ import java.security.cert.Certificate;
/**
* An interface for keyrings that contain trusted (by the owner) public
* credentials (incl. certificates).
- *
+ *
* @see IKeyring
*/
public interface IPublicKeyring
@@ -52,7 +52,7 @@ public interface IPublicKeyring
/**
* Tests if this keyring contains a certificate entry with the specified
* <code>alias</code>.
- *
+ *
* @param alias The alias of the certificate to check.
* @return <code>true</code> if this keyring contains a certificate entry
* that has the given <code>alias</code>; <code>false</code>
@@ -63,7 +63,7 @@ public interface IPublicKeyring
/**
* Returns a certificate that has the given <code>alias</code>, or
* <code>null</code> if this keyring has no such entry.
- *
+ *
* @param alias The alias of the certificate to find.
* @return The certificate with the designated <code>alias</code>, or
* <code>null</code> if none found.
@@ -74,7 +74,7 @@ public interface IPublicKeyring
* Adds a certificate in this keyring, with the given <code>alias</code>.
* <p>
* What happens if there is already a certificate entry with this alias?
- *
+ *
* @param alias The alias of this certificate entry.
* @param cert The certificate.
*/
diff --git a/gnu/javax/crypto/keyring/MalformedKeyringException.java b/gnu/javax/crypto/keyring/MalformedKeyringException.java
index 0dab3a764..f6b9d189b 100644
--- a/gnu/javax/crypto/keyring/MalformedKeyringException.java
+++ b/gnu/javax/crypto/keyring/MalformedKeyringException.java
@@ -1,4 +1,4 @@
-/* MalformedKeyringException.java --
+/* MalformedKeyringException.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/gnu/javax/crypto/keyring/MaskableEnvelopeEntry.java b/gnu/javax/crypto/keyring/MaskableEnvelopeEntry.java
index 5206a5e07..58254a437 100644
--- a/gnu/javax/crypto/keyring/MaskableEnvelopeEntry.java
+++ b/gnu/javax/crypto/keyring/MaskableEnvelopeEntry.java
@@ -1,4 +1,4 @@
-/* MaskableEnvelopeEntry.java --
+/* MaskableEnvelopeEntry.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -64,7 +64,7 @@ public abstract class MaskableEnvelopeEntry
/**
* Sets the masked state to the specified value.
- *
+ *
* @param masked The new masked state.
*/
protected final void setMasked(boolean masked)
@@ -75,7 +75,7 @@ public abstract class MaskableEnvelopeEntry
/**
* Gets the masked state of this object. Certain operations on this object
* will fail if it is masked.
- *
+ *
* @return The current masked state.
*/
public boolean isMasked()
diff --git a/gnu/javax/crypto/keyring/MeteredInputStream.java b/gnu/javax/crypto/keyring/MeteredInputStream.java
index 330e4b20f..65f263359 100644
--- a/gnu/javax/crypto/keyring/MeteredInputStream.java
+++ b/gnu/javax/crypto/keyring/MeteredInputStream.java
@@ -1,4 +1,4 @@
-/* MeteredInputStream.java --
+/* MeteredInputStream.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -59,7 +59,7 @@ final class MeteredInputStream
/**
* Tests if the number of bytes read has reached the limit.
- *
+ *
* @return True if the limit has been reached.
*/
public boolean limitReached()
diff --git a/gnu/javax/crypto/keyring/PasswordAuthenticatedEntry.java b/gnu/javax/crypto/keyring/PasswordAuthenticatedEntry.java
index be10029c8..d67300442 100644
--- a/gnu/javax/crypto/keyring/PasswordAuthenticatedEntry.java
+++ b/gnu/javax/crypto/keyring/PasswordAuthenticatedEntry.java
@@ -1,4 +1,4 @@
-/* PasswordAuthenticatedEntry.java --
+/* PasswordAuthenticatedEntry.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/gnu/javax/crypto/keyring/PasswordEncryptedEntry.java b/gnu/javax/crypto/keyring/PasswordEncryptedEntry.java
index 00031cbf1..0fa7431a8 100644
--- a/gnu/javax/crypto/keyring/PasswordEncryptedEntry.java
+++ b/gnu/javax/crypto/keyring/PasswordEncryptedEntry.java
@@ -1,4 +1,4 @@
-/* PasswordEncryptedEntry.java --
+/* PasswordEncryptedEntry.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/gnu/javax/crypto/keyring/PasswordProtectedEntry.java b/gnu/javax/crypto/keyring/PasswordProtectedEntry.java
index 5eff63792..a95f2e4a4 100644
--- a/gnu/javax/crypto/keyring/PasswordProtectedEntry.java
+++ b/gnu/javax/crypto/keyring/PasswordProtectedEntry.java
@@ -1,4 +1,4 @@
-/* PasswordProtectedEntry.java --
+/* PasswordProtectedEntry.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -48,7 +48,7 @@ public interface PasswordProtectedEntry
/**
* Encodes this entry, protected by a password.
- *
+ *
* @param out The output stream to encode to.
* @param password The password.
* @throws IOException If an I/O error occurs.
diff --git a/gnu/javax/crypto/keyring/PrimitiveEntry.java b/gnu/javax/crypto/keyring/PrimitiveEntry.java
index 194fe9eee..8993de716 100644
--- a/gnu/javax/crypto/keyring/PrimitiveEntry.java
+++ b/gnu/javax/crypto/keyring/PrimitiveEntry.java
@@ -1,4 +1,4 @@
-/* PrimitiveEntry.java --
+/* PrimitiveEntry.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -70,7 +70,7 @@ public abstract class PrimitiveEntry
/**
* Returns the alias of this primitive entry.
- *
+ *
* @return The alias.
*/
public String getAlias()
@@ -80,7 +80,7 @@ public abstract class PrimitiveEntry
/**
* Returns the creation date of this primitive entry.
- *
+ *
* @return The creation date.
*/
public Date getCreationDate()
diff --git a/gnu/javax/crypto/keyring/PrivateKeyEntry.java b/gnu/javax/crypto/keyring/PrivateKeyEntry.java
index 23244afee..b2637316e 100644
--- a/gnu/javax/crypto/keyring/PrivateKeyEntry.java
+++ b/gnu/javax/crypto/keyring/PrivateKeyEntry.java
@@ -1,4 +1,4 @@
-/* PrivateKeyEntry.java --
+/* PrivateKeyEntry.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -65,7 +65,7 @@ public final class PrivateKeyEntry
/**
* Creates a new key entry.
- *
+ *
* @param key The key.
* @param creationDate The entry creation date.
* @param properties The entry properties.
@@ -143,7 +143,7 @@ public final class PrivateKeyEntry
/**
* Returns this entry's key.
- *
+ *
* @return The key.
*/
public Key getKey()
diff --git a/gnu/javax/crypto/keyring/Properties.java b/gnu/javax/crypto/keyring/Properties.java
index b833a74ae..f25c82e36 100644
--- a/gnu/javax/crypto/keyring/Properties.java
+++ b/gnu/javax/crypto/keyring/Properties.java
@@ -1,4 +1,4 @@
-/* Properties.java --
+/* Properties.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -74,7 +74,7 @@ public class Properties
/**
* Creates a copy of this properties object.
- *
+ *
* @return The copy.
*/
public Object clone()
@@ -86,7 +86,7 @@ public class Properties
/**
* Tests if this object contains a given property name.
- *
+ *
* @param key The key to test.
* @return True if this object contains the given key.
*/
@@ -99,7 +99,7 @@ public class Properties
/**
* Tests if this object contains a given property value.
- *
+ *
* @param value The value to test.
* @return True if this object contains the given value.
*/
@@ -112,7 +112,7 @@ public class Properties
/**
* Adds a new property to this object.
- *
+ *
* @param key The key, which can neither be null nor empty.
* @param value The value, which cannot be null.
* @return The old value mapped by the key, if any.
@@ -129,7 +129,7 @@ public class Properties
/**
* Returns the value mapped by the given key, or null if there is no such
* mapping.
- *
+ *
* @param key
*/
public String get(String key)
@@ -141,7 +141,7 @@ public class Properties
/**
* Removes a key and its value from this object.
- *
+ *
* @param key The key of the property to remove.
* @return The old value mapped by the key, if any.
*/
@@ -154,7 +154,7 @@ public class Properties
/**
* Decodes a set of properties from the given input stream.
- *
+ *
* @param in The input stream.
* @throws IOException If an I/O error occurs.
*/
@@ -173,7 +173,7 @@ public class Properties
/**
* Encodes this set of properties to the given output stream.
- *
+ *
* @param out The output stream to encode to.
* @throws IOException If an I/O error occurs.
*/
diff --git a/gnu/javax/crypto/keyring/PublicKeyEntry.java b/gnu/javax/crypto/keyring/PublicKeyEntry.java
index 3e7f54d3e..837706d19 100644
--- a/gnu/javax/crypto/keyring/PublicKeyEntry.java
+++ b/gnu/javax/crypto/keyring/PublicKeyEntry.java
@@ -1,4 +1,4 @@
-/* PublicKeyEntry.java --
+/* PublicKeyEntry.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -123,7 +123,7 @@ public final class PublicKeyEntry
/**
* Returns the public key.
- *
+ *
* @return The public key.
*/
public PublicKey getKey()