You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/plugins/hooks.rst
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -133,6 +133,30 @@ Unclassified
133
133
134
134
Hooks that cannot be classified in above categories :)
135
135
136
+
``secured_fields``
137
+
.. versionadded:: 9.4.6
138
+
139
+
An array of fields names (with table like ``glpi_mytable.myfield``) that are stored using GLPI crypting methods.
140
+
This allows pluins to add some fields to the ``glpi:security:changekey`` command.
141
+
142
+
.. warning::
143
+
144
+
Plugins have to ensure crypt migration on their side is OK; and once using it, they **must** properly declare fields.
145
+
146
+
All fields that would use the key file without being listed would be unreadable after key has been changed (and stored data would stay potentially unsecure).
147
+
148
+
``secured_configs``
149
+
.. versionadded:: 9.4.6
150
+
151
+
An array of configuration entries that are stored using GLPI crypting methods.
152
+
This allows pluins to add some entries to the ``glpi:security:changekey`` command.
153
+
154
+
.. warning::
155
+
156
+
Plugins have to ensure crypt migration on their side is OK; and once using it, they **must** properly declare fields.
157
+
158
+
All configuration entries that would use the key file without being listed would be unreadable after key has been changed (and stored data would stay potentially unsecure).
0 commit comments