Add documentation for high-level functions

This commit is contained in:
2025-05-04 17:47:13 -04:00
parent f176d57b6b
commit 0479447f14
+2
View File
@@ -1,5 +1,6 @@
package wrappers
// Decrypt decrypts the provided byte slice using the provided passphrase.
func Decrypt(encBytes []byte, passphrase []byte) ([]byte, error) {
var err error = nil
encBytes, err = decryptCha(encBytes, passphrase)
@@ -13,6 +14,7 @@ func Decrypt(encBytes []byte, passphrase []byte) ([]byte, error) {
return encBytes, err
}
// Encrypt encrypts the provided byte slice using the provided passphrase.
func Encrypt(decBytes []byte, passphrase []byte) []byte {
decBytes = encryptAES(decBytes, passphrase)
decBytes = encryptCha(decBytes, passphrase)