defaultCost constant

int const defaultCost

Default cost factor for bcrypt (10 = 2^10 = 1024 iterations) Higher values increase security but also computation time Recommended: 10-12 for production

Implementation

static const int defaultCost = 10;