samples/messagedigest/src-new-api/org/apidesign/impl/security/friendapi/DigestProvider.java
changeset 44 716af5f2ebd1
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/samples/messagedigest/src-new-api/org/apidesign/impl/security/friendapi/DigestProvider.java	Sat Jun 14 09:52:23 2008 +0200
     1.3 @@ -0,0 +1,14 @@
     1.4 +/*
     1.5 + * To change this template, choose Tools | Templates
     1.6 + * and open the template in the editor.
     1.7 + */
     1.8 +
     1.9 +package org.apidesign.impl.security.friendapi;
    1.10 +
    1.11 +/**
    1.12 + *
    1.13 + * @author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    1.14 + */
    1.15 +public interface DigestProvider {
    1.16 +    public abstract DigestImplementation create(String algorithm);
    1.17 +}