I'm wondering if bcrypt is a good hashing function to use. I've heard about it being used for password storage and want to know if it's secure and reliable for this purpose.
            
            
            
            
            
            
           
          
          
            6 answers
            
            
  
    
    KimonoGlory
    Mon Nov 04 2024
   
  
    Specifically, bcrypt outperforms pbkdf2 in terms of strength and security.
  
  
 
            
            
  
    
    Federico
    Mon Nov 04 2024
   
  
    Scrypt and argon2 also fall behind bcrypt in this comparison.
  
  
 
            
            
  
    
    Riccardo
    Mon Nov 04 2024
   
  
    Password hashing is a crucial process that typically aims to complete within 1000 milliseconds.
  
  
 
            
            
  
    
    NebulaSoul
    Mon Nov 04 2024
   
  
    PBKDF2, another popular algorithm, is considered weaker than bcrypt due to its lesser security features.
  
  
 
            
            
  
    
    BlockchainBaron
    Mon Nov 04 2024
   
  
    It's worth noting that the commonly used SHA2 hashing algorithm does not possess memory-hard properties, making it less suitable for certain security requirements.