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