mirror of
https://github.com/restic/restic.git
synced 2025-08-25 18:37:42 +00:00
crypto: move crypto buffer helpers
This commit is contained in:
19
internal/crypto/buffer.go
Normal file
19
internal/crypto/buffer.go
Normal file
@@ -0,0 +1,19 @@
|
||||
package crypto
|
||||
|
||||
// NewBlobBuffer returns a buffer that is large enough to hold a blob of size
|
||||
// plaintext bytes, including the crypto overhead.
|
||||
func NewBlobBuffer(size int) []byte {
|
||||
return make([]byte, size, size+Extension)
|
||||
}
|
||||
|
||||
// PlaintextLength returns the plaintext length of a blob with ciphertextSize
|
||||
// bytes.
|
||||
func PlaintextLength(ciphertextSize int) int {
|
||||
return ciphertextSize - Extension
|
||||
}
|
||||
|
||||
// CiphertextLength returns the encrypted length of a blob with plaintextSize
|
||||
// bytes.
|
||||
func CiphertextLength(plaintextSize int) int {
|
||||
return plaintextSize + Extension
|
||||
}
|
Reference in New Issue
Block a user