diff --git a/wrappers/highLevel.go b/wrappers/highLevel.go index 2cbca68..be5d0a7 100644 --- a/wrappers/highLevel.go +++ b/wrappers/highLevel.go @@ -1,7 +1,6 @@ package wrappers // Decrypt decrypts the provided byte slice using the provided passphrase. -// Do NOT use directly if using the RCW daemon. func Decrypt(encBytes []byte, passphrase []byte) ([]byte, error) { var err error = nil encBytes, err = decryptCha(encBytes, passphrase) @@ -16,7 +15,6 @@ func Decrypt(encBytes []byte, passphrase []byte) ([]byte, error) { } // Encrypt encrypts the provided byte slice using the provided passphrase. -// Do NOT use directly if using the RCW daemon. func Encrypt(decBytes []byte, passphrase []byte) []byte { decBytes = encryptAES(decBytes, passphrase) decBytes = encryptCha(decBytes, passphrase)