
com.kloudtek.kryptotek.Digest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kryptotek-core Show documentation
Show all versions of kryptotek-core Show documentation
Kryptotek provides an easy to use abstraction layer for cryptographic functions
The newest version!
/*
* Copyright (c) 2014 Kloudtek Ltd
*/
package com.kloudtek.kryptotek;
import java.nio.ByteBuffer;
import java.security.DigestException;
/**
* Created by yannick on 19/08/2014.
*/
public interface Digest {
byte[] digest();
int digest(byte[] buf, int offset, int len) throws DigestException;
byte[] digest(byte[] input);
void reset();
int getDigestLength();
String getAlgorithm();
void update(ByteBuffer input);
void update(byte[] input);
void update(byte[] input, int offset, int len);
void update(byte input);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy