/magstudentportal/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/magstudentportal/trunk
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
/* c-basic-offset: 2; tab-width: 2; indent-tabs-mode: nil
 * vi: set shiftwidth=2 tabstop=2 expandtab:
 * :indentSize=2:tabSize=2:noTabs=true:
 */

package common;

import org.bouncycastle.jcajce.provider.digest.*;
import org.bouncycastle.util.encoders.*;
import java.security.MessageDigestSpi;


public class
Utils {
  private Utils () {};

  /**
   * A hash function that salts the password
   * in a way that is pseudo dynamic.
   * 
   * @param t the text to salt
   * @param s the salt
   * @return
   */
  static public String
    real_hash_func (String t, String s) {
      int a = t.getBytes()[0];
      int b = t.getBytes()[a%t.length()];

      StringBuilder sb = new StringBuilder ();
      sb.append (t).insert (b, s);

      SHA3.DigestSHA3 md = new SHA3.DigestSHA3 (2048);
      try {
        md.update (sb.toString().getBytes("UTF-8"));
      } catch (Exception e) {
       md.update (sb.toString().getBytes()); 
      }
      return Hex.toHexString (md.digest ());
    }

  /**
   * Hash a text with a salt.
   * 
   * @param t
   * @return
   */
  static public String
    hash_func (String t) {
      return real_hash_func(t, common.Config.PW_SALT);
    }


}