I am using .NET Bcrypt hash implementation from third party library and it has method that create hash simply providing text or password like below.
Bcrypt.HashPassword("password")
I know that generated hash contains salt information but it doesn't get salt parameter while creating hash.
Bcrypt create random salt internally and use it ?
It can cause security weakness if i don't use salt overloaded method ?