FLAM Issue Tracker - CLE/P
View Issue Details
0000748CLE/P2. CLPpublic2015-11-05 08:342015-11-05 13:42
Falk Reichbott 
Falk Reichbott 
normalfeatureN/A
resolvedfixed 
GeneralGeneralGeneral
1.1 
1.21.2 
0000748: Support read from files for strings to protect passwords
Mainly for passwords and passphases it would be useful to provide a file name where the file contains the password.

For example:

    passwd=a'Alligator'

can be replaced with:

    passwd=f'pwfile.txt'

where the pwfile.txt contains:

    a'Alligator'

This feature prevent logging of passwords and other sensitivs strings
No tags attached.
Issue History
2015-11-05 08:34Falk ReichbottNew Issue
2015-11-05 08:34Falk ReichbottStatusnew => assigned
2015-11-05 08:34Falk ReichbottAssigned To => Falk Reichbott
2015-11-05 13:42Falk ReichbottNote Added: 0000906
2015-11-05 13:42Falk ReichbottStatusassigned => resolved
2015-11-05 13:42Falk ReichbottFixed in Version => 1.2
2015-11-05 13:42Falk ReichbottResolutionopen => fixed

Notes
(0000906)
Falk Reichbott   
2015-11-05 13:42   
For strings you can now define f'filename.ext' and in the file you can use each kind of string definition except f'xxx' to prevent endless recursions.

Example:

PASSWD=a'alligator'

PASSWD=f'pwd.txt'

> cat pwd.txt
a'alligator'