Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SecureFifoReader ¶
type SecureFifoReader interface { io.ReadCloser // Reset closes current reader and opens a new one that starts at the beginning of the data Reset() (SecureFifoReader, error) }
type SecureFifoWriter ¶
type SecureFifoWriter interface { io.WriteCloser // Done closes current writer and opens SecureFifoReader stream for reading Done() (SecureFifoReader, error) }
func New ¶
func New() (wr SecureFifoWriter, err error)
New creates new secure fifo pipe. That pipe may handle large amounts of data by using a temporary storage but ensures that even if the data can be accessed from disk, it can not be decrypted.
Click to show internal directories.
Click to hide internal directories.