Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7295605613f62b4ebc840c33ec91abfa6dd7a741 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
 * Copyright (c) 2004 - 2011 Eike Stepper (Berlin, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.net4j.util.security;

import org.eclipse.net4j.util.ReflectUtil.ExcludeFromDump;
import org.eclipse.net4j.util.io.IORuntimeException;
import org.eclipse.net4j.util.lifecycle.Lifecycle;

import java.util.HashMap;
import java.util.Map;

/**
 * @author Eike Stepper
 */
public class UserManager extends Lifecycle implements IUserManager
{
  @ExcludeFromDump
  protected transient Map<String, char[]> users = new HashMap<String, char[]>();

  public UserManager()
  {
  }

  public synchronized void addUser(String userID, char[] password)
  {
    users.put(userID, password);
    save(users);
  }

  public synchronized void removeUser(String userID)
  {
    if (users.remove(userID) != null)
    {
      save(users);
    }
  }

  /**
   * @since 2.0
   */
  public byte[] encrypt(String userID, byte[] data, String algorithmName, byte[] salt, int count)
      throws SecurityException
  {
    char[] password;
    synchronized (this)
    {
      password = users.get(userID);
    }

    if (password == null)
    {
      throw new SecurityException("No such user: " + userID); //$NON-NLS-1$
    }

    try
    {
      return SecurityUtil.encrypt(data, password, algorithmName, salt, count);
    }
    catch (RuntimeException ex)
    {
      throw ex;
    }
    catch (Exception ex)
    {
      throw new SecurityException(ex);
    }
  }

  @Override
  protected void doActivate() throws Exception
  {
    super.doActivate();
    load(users);
  }

  @Override
  protected void doDeactivate() throws Exception
  {
    users.clear();
    super.doDeactivate();
  }

  protected void load(Map<String, char[]> users) throws IORuntimeException
  {
  }

  protected void save(Map<String, char[]> users) throws IORuntimeException
  {
  }
}

Back to the top