📄 simpleloginservice.java
字号:
/* * $Id: SimpleLoginService.java,v 1.3 2005/10/10 18:02:50 rbair Exp $ * * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle, * Santa Clara, California 95054, U.S.A. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */package org.jdesktop.swingx.auth;import java.io.IOException;import java.util.Arrays;import java.util.HashMap;import java.util.Map;/** * An implementation of LoginService that simply matches * the username/password against a list of known users and their passwords. * This is useful for demos or prototypes where a proper login server is not available. * * <em>This Implementation is NOT secure. DO NOT USE this in a real application</em> * To make this implementation more secure, the passwords should be passed in and * stored as the result of a one way hash algorithm. That way an attacker cannot * simply read the password in memory to crack into the system. * * @author rbair */public final class SimpleLoginService extends LoginService { private Map<String,char[]> passwordMap; /** * Creates a new SimpleLoginService based on the given password map. */ public SimpleLoginService(Map<String,char[]> passwordMap) { if (passwordMap == null) { passwordMap = new HashMap<String,char[]>(); } this.passwordMap = passwordMap; } /** * Attempts to authenticate the given username and password against the password map */ public boolean authenticate(String name, char[] password, String server) throws IOException { char[] p = passwordMap.get(name); return Arrays.equals(password, p); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -