summaryrefslogtreecommitdiffstats
path: root/base/util/src/netscape/security/x509/AVAValueConverter.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/util/src/netscape/security/x509/AVAValueConverter.java')
-rw-r--r--base/util/src/netscape/security/x509/AVAValueConverter.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/base/util/src/netscape/security/x509/AVAValueConverter.java b/base/util/src/netscape/security/x509/AVAValueConverter.java
index cd3ce7616..50ccd4d8a 100644
--- a/base/util/src/netscape/security/x509/AVAValueConverter.java
+++ b/base/util/src/netscape/security/x509/AVAValueConverter.java
@@ -26,23 +26,23 @@ import netscape.security.util.DerValue;
* DER encoded ASN.1 value and vice versa.
* The converters are associated with attribute types, such as
* directory string, ia5string, etc.
- *
+ *
* <P>
* For example, to convert a string, such as an organization name for the "O" attribute to a DerValue, the "O" attribute
* is mapped to the DirStrConverter which is used to convert the organization name to a DER encoded Directory String
* which is a DerValue of a ASN.1 PrintableString, T.61String or UniversalString for the organization name.
- *
+ *
* @author Lily Hsiao, Slava Galperin at Netscape Communications, Inc.
*/
public interface AVAValueConverter {
/**
* Converts a string to a DER encoded attribute value.
- *
+ *
* @param valueString An AVA value string not encoded in any form.
- *
+ *
* @return A DerValue object.
- *
+ *
* @exception IOException if an error occurs during the conversion.
*/
public DerValue getValue(String valueString)
@@ -53,11 +53,11 @@ public interface AVAValueConverter {
* Specify the order of DER tags to use if more than one encoding is
* possible. Currently Directory Strings can have different order
* for backwards compatibility. By 2003 all should be UTF8String.
- *
+ *
* @param valueString An AVA value string not encoded in any form.
- *
+ *
* @return A DerValue object.
- *
+ *
* @exception IOException if an error occurs during the conversion.
*/
public DerValue getValue(String valueString, byte[] tags)
@@ -65,7 +65,7 @@ public interface AVAValueConverter {
/**
* Converts a BER encoded value to a DER encoded attribute value.
- *
+ *
* @param berStream A byte array of the BER encoded AVA value.
* @return A DerValue object.
*/
@@ -74,11 +74,11 @@ public interface AVAValueConverter {
/**
* Converts a DER encoded value to a string, not encoded in any form.
- *
+ *
* @param avaValue A DerValue object.
- *
+ *
* @return A string for the value or null if it can't be converted.
- *
+ *
* @exception IOException if an error occurs during the conversion.
*/
public String getAsString(DerValue avaValue)