CiphertextLength returns the encrypted length of a blob with plaintextSize bytes.
(plaintextSize int)
| 15 | // CiphertextLength returns the encrypted length of a blob with plaintextSize |
| 16 | // bytes. |
| 17 | func CiphertextLength(plaintextSize int) int { |
| 18 | return plaintextSize + Extension |
| 19 | } |
no outgoing calls