summaryrefslogtreecommitdiff
path: root/java/security/spec/EncodedKeySpec.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/security/spec/EncodedKeySpec.java')
-rw-r--r--java/security/spec/EncodedKeySpec.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/java/security/spec/EncodedKeySpec.java b/java/security/spec/EncodedKeySpec.java
index c5baf55fd..93e158385 100644
--- a/java/security/spec/EncodedKeySpec.java
+++ b/java/security/spec/EncodedKeySpec.java
@@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
-
+
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
@@ -39,12 +39,12 @@ exception statement from your version. */
package java.security.spec;
/**
- Encoded Key Specification class which is used to store
- byte encoded keys.
+ Encoded Key Specification class which is used to store
+ byte encoded keys.
- @since JDK 1.2
+ @since JDK 1.2
- @author Mark Benvenuto
+ @author Mark Benvenuto
*/
public abstract class EncodedKeySpec implements KeySpec
{
@@ -56,7 +56,7 @@ public abstract class EncodedKeySpec implements KeySpec
@param encodedKey A key to store
*/
- public EncodedKeySpec(byte[] encodedKey)
+ public EncodedKeySpec(byte[] encodedKey)
{
this.encodedKey = encodedKey;
}
@@ -66,7 +66,7 @@ public abstract class EncodedKeySpec implements KeySpec
@returns the encoded key
*/
- public byte[] getEncoded()
+ public byte[] getEncoded()
{
return this.encodedKey;
}
@@ -75,8 +75,8 @@ public abstract class EncodedKeySpec implements KeySpec
Returns the name of the key format used.
This name is the format such as "PKCS#8" or "X.509" which
- if it matches a Key class name of the same type can be
- transformed using the apporiate KeyFactory.
+ if it matches a Key class name of the same type can be
+ transformed using the apporiate KeyFactory.
@return a string representing the name
*/