Generate bcrypt hashes with custom salt rounds.
Bcrypt is a password hashing function designed to be resistant to brute-force attacks. It uses a cost factor (salt rounds) to adjust the computation time, making it more computationally expensive to crack.
Salt rounds determine how many times the hashing algorithm iterates. Higher values increase security but also increase the time it takes to generate and verify the hash.
Example 1: Input: "mypassword" Salt Rounds: 10 Output: (Bcrypt hash)