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: public class TransparentCipher implements PasswordCipher {
6: public String encrypt(String password) throws Exception {
7: return password;
8: }
9: }
|