Project Descriptiontool for hashing and salting strings (passwords), you can specify the salt size before encrypting
var hasher = new Hasher();
//by default salt size is 4
hasher.SaltSize = 10;
var encryptedPassword = hasher.Encrypt(password);
var hasher = new Hasher();
hasher.SaltSize = 10;
bool areEqual = hasher.CompareStringToHash(enteredPassword, hashedPassword);