Only sha1 encryption satisfy FIPS requirement for login passwords, md5 and des cannot be used for FIPS. system.cnf.dd object password { .... attribute format { type enum string { choice sha1 { help "Secure Hash Algorithm 1"; } choice md5 { flag no-fips; help "Message Digest 5"; } choice des { flag no-fips; help "Digital Encryption Standard"; } } } }
FIPS router user@frouter> show version Hostname: frouter Model: t320 JUNOS Software Release [8.1R1] (FIPS edition) user@frouter> configure Entering configuration mode [edit] user@frouter# set system login password format ? Possible completions: sha1 Secure Hash Algorithm 1 [edit] non-FIPS router user@router> show version Hostname: router JUNOS Software Release [8.1R1] user@router> configure Entering configuration mode [edit] user@router# set system login password format ? Possible completions: des Digital Encryption Standard md5 Message Digest 5 sha1 Secure Hash Algorithm 1 [edit]