13 lines
307 B
Java
13 lines
307 B
Java
package net.minecraft.util;
|
|
|
|
import java.security.SignatureException;
|
|
|
|
@FunctionalInterface
|
|
public interface SignatureUpdater {
|
|
void update(SignatureUpdater.Output output) throws SignatureException;
|
|
|
|
@FunctionalInterface
|
|
public interface Output {
|
|
void update(byte[] bs) throws SignatureException;
|
|
}
|
|
}
|