diff --git a/src/share/classes/javax/crypto/Cipher.java b/src/share/classes/javax/crypto/Cipher.java index d16c579469cedef8983cd6e04559067b43d1038d..ffcc7cf329ca3091e649a93041d7010d30432ae6 100644 --- a/src/share/classes/javax/crypto/Cipher.java +++ b/src/share/classes/javax/crypto/Cipher.java @@ -62,17 +62,17 @@ import sun.security.jca.*; * algorithm (e.g., DES), and may be followed by a feedback mode and * padding scheme. * - *

A transformation is of the form:

+ *

A transformation is of the form: * *

* *

(in the latter case, * provider-specific default values for the mode and padding scheme are used). - * For example, the following is a valid transformation:

+ * For example, the following is a valid transformation: * *

  *     Cipher c = Cipher.getInstance("DES/CBC/PKCS5Padding");
diff --git a/src/share/classes/javax/crypto/CipherSpi.java b/src/share/classes/javax/crypto/CipherSpi.java
index aae33318d1cb8022657aca5280c589a33d4f8298..ce7258157d57e3d01bce14a4939941cf1a7c361a 100644
--- a/src/share/classes/javax/crypto/CipherSpi.java
+++ b/src/share/classes/javax/crypto/CipherSpi.java
@@ -62,17 +62,17 @@ import java.nio.ByteBuffer;
  * algorithm (e.g., DES), and may be followed by a feedback mode and
  * padding scheme.
  *
- * 

A transformation is of the form:

+ *

A transformation is of the form: * *

* *

(in the latter case, * provider-specific default values for the mode and padding scheme are used). - * For example, the following is a valid transformation:

+ * For example, the following is a valid transformation: * *

  *     Cipher c = Cipher.getInstance("DES/CBC/PKCS5Padding");
@@ -129,7 +129,7 @@ import java.nio.ByteBuffer;
  * DES/CBC/PKCS5Padding, one that implements
  * DES/CFB/PKCS5Padding, and yet another one that implements
  * DES/OFB/PKCS5Padding. That provider would have the following
- * Cipher properties in its master class:

+ * Cipher properties in its master class: * *