Interface BIOCallback


  • public interface BIOCallback
    Open SSL BIO Callback Interface
    Author:
    Mladen Turk
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String gets​(int len)
      Read string up to the len or CLRLF
      int puts​(java.lang.String data)
      Puts string
      int read​(byte[] buf)
      Read data
      int write​(byte[] buf)
      Write data
    • Method Detail

      • write

        int write​(byte[] buf)
        Write data
        Parameters:
        buf - containing the bytes to write.
        Returns:
        Number of characters written.
      • read

        int read​(byte[] buf)
        Read data
        Parameters:
        buf - buffer to store the read bytes.
        Returns:
        number of bytes read.
      • puts

        int puts​(java.lang.String data)
        Puts string
        Parameters:
        data - String to write
        Returns:
        Number of characters written
      • gets

        java.lang.String gets​(int len)
        Read string up to the len or CLRLF
        Parameters:
        len - Maximum number of characters to read
        Returns:
        String with up to len bytes read