commit | author | age
|
6240cd
|
1 |
/* |
U |
2 |
* To change this license header, choose License Headers in Project Properties. |
|
3 |
* To change this template file, choose Tools | Templates |
|
4 |
* and open the template in the editor. |
|
5 |
*/ |
|
6 |
package de.uhilger.um; |
|
7 |
|
|
8 |
import org.apache.catalina.realm.RealmBase; |
|
9 |
|
|
10 |
/** |
|
11 |
* |
|
12 |
* @author ulli |
|
13 |
*/ |
|
14 |
public class TomcatDigester implements Digester { |
|
15 |
|
|
16 |
@Override |
|
17 |
public String digest(String text, String algorithm, String encoding) { |
|
18 |
return RealmBase.Digest(text, algorithm, encoding); |
|
19 |
} |
|
20 |
|
|
21 |
} |