DerivedPasswords: Boolean;
The DerivedPasswords property determines whether password encryption is used. If the property is set to True, passwords are encrypted when saving, otherwise - they are not.
NOTE. This property is outdated, use HashedPasswords.
Sub Main;
Var
MB: IMetabase;
MBSecurity: IMetabaseSecurity;
MBPolicy: IMetabasePolicy;
MBPasswordPolicy: IMetabasePasswordPolicy;
Begin
Mb := MetabaseClass.Active;
MBSecurity := MB.Security;
MBPolicy := MBSecurity.Policy;
MBPasswordPolicy := MBPolicy.PasswordPolicy;
MBPasswordPolicy.DerivedPasswords := False;
MBSecurity.Apply;
End Sub Main;
After executing the example password encryption is not used.
See also: