diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-03-22 17:22:22 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-03-30 12:23:39 +0200 |
commit | 192fa1e3bfc6269f2ebb91716471485a56074aea (patch) | |
tree | 3a61d598a89b367830e1fc8bf0ad3abe69ab27b9 /officecfg/registry | |
parent | efb6845d42c44bbd75771cc1641bc5f2225d8a96 (diff) |
add Initialization Vectors to password storage
old ones default to the current all zero case and continue to work
as before
Change-Id: I6fe3b02fafcce1b5e7133e77e76a5118177d77af
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131974
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'officecfg/registry')
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Common.xcs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs b/officecfg/registry/schema/org/openoffice/Office/Common.xcs index 6e280eac2fc5..d1b16d62554b 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs @@ -27,6 +27,11 @@ <info> <desc>Contains a container for passwords.</desc> </info> + <prop oor:name="InitializationVector" oor:type="xs:string"> + <info> + <desc>Contains an initialization vector for the password encryption.</desc> + </info> + </prop> <prop oor:name="Password" oor:type="xs:string" oor:localized="false"> <info> <desc>Contains a password encoded with the master password.</desc> @@ -955,6 +960,11 @@ </info> <value>false</value> </prop> + <prop oor:name="MasterInitializationVector" oor:type="xs:string"> + <info> + <desc>Contains an initialization vector for the master password encryption.</desc> + </info> + </prop> <prop oor:name="Master" oor:type="xs:string" oor:nillable="false"> <info> <desc>Contains the master password encrypted by itself.</desc> |