Blame view

test/FitNesseRoot/FitNesse/UserGuide/PasswordCipher/content.txt 232 Bytes
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
A class used to encrypt password that will be written to a PasswordFile.  Here is the interface.
{{{
package fitnesse.authentication;

public interface PasswordCipher
{
	public String encrypt(String password) throws Exception;
}
}}}