jtulach@44: /* jtulach@44: * To change this template, choose Tools | Templates jtulach@44: * and open the template in the editor. jtulach@44: */ jtulach@44: jtulach@44: package org.apidesign.impl.security.friendapi; jtulach@44: jtulach@44: import java.nio.ByteBuffer; jtulach@44: jtulach@44: /** jtulach@44: * jtulach@44: * @author Jaroslav Tulach jtulach@44: */ jtulach@44: public abstract class DigestImplementation { jtulach@44: final String name; jtulach@44: jtulach@44: protected DigestImplementation(String algorithm) { jtulach@44: this.name = algorithm; jtulach@44: } jtulach@44: jtulach@44: public abstract void update(ByteBuffer bb); jtulach@44: public abstract byte[] digest(); jtulach@44: }