All Downloads are FREE. Search and download functionalities are using the official Maven repository.

delombok.io.github.qsy7.encryption.service.EncryptionService Maven / Gradle / Ivy

The newest version!
package io.github.qsy7.encryption.service;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

public interface EncryptionService {
  void encrypt(InputStream inputStream, OutputStream outputStream) throws IOException;

  OutputStream getEncryptionStream(OutputStream outputStream);

  void decrypt(InputStream cipherStream, OutputStream plaintextStream) throws IOException;

  InputStream getDecryptionStream(InputStream inputStream);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy