diff --git a/reference/openssl/functions/openssl-decrypt.xml b/reference/openssl/functions/openssl-decrypt.xml
index 56d59a09a6..c90f6ca986 100644
--- a/reference/openssl/functions/openssl-decrypt.xml
+++ b/reference/openssl/functions/openssl-decrypt.xml
@@ -14,7 +14,7 @@
stringdata
stringmethod
stringpassword
- boolraw_inputfalse
+ intoptions0
stringiv""
@@ -54,14 +54,14 @@
- raw_input
-
-
- Setting to &true; will take a raw encoded string,
- otherwise a base64 string is assumed for the
- data parameter.
-
-
+ options
+
+
+ options can be one of
+ OPENSSL_RAW_DATA,
+ OPENSSL_ZERO_PADDING.
+
+
iv
@@ -111,6 +111,12 @@
The iv parameter was added.
+
+ 5.4.0
+
+ The raw_output was changed to options.
+
+
diff --git a/reference/openssl/functions/openssl-encrypt.xml b/reference/openssl/functions/openssl-encrypt.xml
index f9ef8ec69a..33c2fc55f4 100644
--- a/reference/openssl/functions/openssl-encrypt.xml
+++ b/reference/openssl/functions/openssl-encrypt.xml
@@ -14,7 +14,7 @@
stringdata
stringmethod
stringpassword
- boolraw_outputfalse
+ intoptions0
stringiv""
@@ -55,13 +55,14 @@
- raw_output
-
-
- Setting to &true; will return as raw output data, otherwise the return
- value is base64 encoded.
-
-
+ options
+
+
+ options can be one of
+ OPENSSL_RAW_DATA,
+ OPENSSL_ZERO_PADDING.
+
+
iv
@@ -111,6 +112,12 @@
The iv parameter was added.
+
+ 5.4.0
+
+ The raw_output was changed to options.
+
+