samples/messagedigest/src/org/apidesign/impl/security/friendapi/DigestProvider.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:52:22 +0200
changeset 43 a161a4cdb597
permissions -rw-r--r--
Repackaging to org.apidesign packages
jtulach@43
     1
/*
jtulach@43
     2
 * To change this template, choose Tools | Templates
jtulach@43
     3
 * and open the template in the editor.
jtulach@43
     4
 */
jtulach@43
     5
jtulach@43
     6
package org.apidesign.impl.security.friendapi;
jtulach@43
     7
jtulach@43
     8
/**
jtulach@43
     9
 *
jtulach@43
    10
 * @author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jtulach@43
    11
 */
jtulach@43
    12
public interface DigestProvider {
jtulach@43
    13
    public abstract DigestImplementation create(String algorithm);
jtulach@43
    14
}