@@ -162,8 +162,8 @@ CipherText encrypt(SecretKey key, PlainText plaintext)
162
162
* </p>
163
163
* @param ciphertext The {@code CipherText} object to be decrypted.
164
164
* @return The {@code PlainText} object resulting from decrypting the specified
165
- * ciphertext. Note that it it is desired to convert the returned
166
- * plaintext byte array to a Java String is should be done using
165
+ * ciphertext. Note that the returned plaintext byte array
166
+ * should be converted to a Java String using
167
167
* {@code new String(byte[], "UTF-8");} rather than simply using
168
168
* {@code new String(byte[]);} which uses native encoding and may
169
169
* not be portable across hardware and/or OS platforms.
@@ -186,8 +186,8 @@ CipherText encrypt(SecretKey key, PlainText plaintext)
186
186
* @param key The {@code SecretKey} to use for encrypting the plaintext.
187
187
* @param ciphertext The {@code CipherText} object to be decrypted.
188
188
* @return The {@code PlainText} object resulting from decrypting the specified
189
- * ciphertext. Note that it it is desired to convert the returned
190
- * plaintext byte array to a Java String is should be done using
189
+ * ciphertext. Note that the returned plaintext byte array
190
+ * should be converted to a Java String using
191
191
* {@code new String(byte[], "UTF-8");} rather than simply using
192
192
* {@code new String(byte[]);} which uses native encoding and may
193
193
* not be portable across hardware and/or OS platforms.
0 commit comments