File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
cmem_plugin_base/dataintegration/parameter Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
8
8
9
9
### Added
10
10
11
- - Custom actions for Workflow plugins (CMEM-5576).
12
- - Added explicit_schema parameter to FlexibleOutputSchema (CMEM-6444).
11
+ - Custom actions for Workflow plugins (CMEM-5576)
12
+ - Added explicit_schema parameter to FlexibleOutputSchema (CMEM-6444)
13
+
14
+ ### Fixed
15
+
16
+ - Check if passwords can be decrypted, i.e., if the key is valid (CMEM-5932)
13
17
14
18
## [ 4.9.0] 2025-02-20
15
19
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ class Password:
10
10
def __init__ (self , encrypted_value : str , system : SystemContext ):
11
11
self .encrypted_value = encrypted_value
12
12
self .system = system
13
+ self .decrypt () # Decrypt the password to check if the key is valid
13
14
14
15
def decrypt (self ) -> str :
15
16
"""Return the decrypted value"""
You can’t perform that action at this time.
0 commit comments