Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrEncrypt is returned when encryption fails. ErrEncrypt = errors.New("crypto: encryption failed") // ErrDecrypt is returned when decryption fails. ErrDecrypt = errors.New("crypto: decryption failed") )
View Source
var ( // IterationsHigh is the recommended number of iterations for // file encryption according to the scrypt docs. IterationsHigh = 1048576 // IterationsLow is twice the number of iterations for interactive // encryption as specified in the scrypt docs. IterationsLow = 32768 // Iterations contains the number of iterations to be used by // filecrypt; the default is the standard filecrypt number. Iterations = IterationsHigh )
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.