1: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
2: // Released under the terms of the GNU General Public License version 2 or later.
3: package fitnesse.authentication;
4:
5: publicinterface PasswordCipher {
6: publicString encrypt(String password) throws Exception;
7: }