ulrich
2016-12-27 6240cdca43495122d436de8488395bf7fd5eae12
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 /**
9  *
10  * @author ulli
11  */
12 public interface Digester {
13   public static final String MD5 = "MD5";
14
15   String digest(String text, String algorithm, String encoding);
16 }