package
1.7.6
Repository: https://github.com/skit-ai/vcore.git
Documentation: pkg.go.dev

# Functions

Decrypt a base64-encoded encrypted string to unencrypted bytes This function accepts an incoming base64 encoded string, base64 decodes it, decrypts it using EncryptBytes func and returns resultant byte array.
Decrypt a base64-encoded encrypted string to unencrypted bytes This function accepts an incoming base64 encoded string, base64 decodes it, decrypts it using EncryptBytes func and returns resultant byte array.
Decrypt a base64-encoded encrypted string to unencrypted string This function accepts an incoming base64 encoded string, base64 decodes it, decrypts it using EncryptBytes func, converts the result into a string and returns resultant string.
Decrypt a base64-encoded encrypted string to unencrypted string This function accepts an incoming base64 encoded string, base64 decodes it, decrypts it using EncryptBytes func, converts the result into a string and returns resultant string.
Decrypt a byte array Deprecated - to be removed in future releases - use DecryptBytesWithDataKey instead This function accepts an incoming byte array, decrypts it using AES-256 decryption and returns the result in bytes.
Decrypt a byte array This function accepts an incoming byte array, decrypts it using AES-256 decryption and returns the result in bytes.
Decrypt a byte array This function accepts an incoming byte array, decrypts it using AES-256 decryption, converts the result into a string and returns the string.
Decrypt a byte array This function accepts an incoming byte array, decrypts it using AES-256 decryption, converts the result into a string and returns the string.
Encrypt a byte array Deprecated - to be removed in future releases - use EncryptBytesWithDataKey instead This function accepts an incoming byte array, encrypts it using AES-256 decryption and returns the result in bytes.
Encrypt a byte array This function accepts an incoming byte array, encrypts it using AES-256 decryption and returns the result in bytes.
Encrypt a byte array This function accepts an incoming string, encrypts it using EncryptBytes func and returns the result in bytes.
Encrypt a byte array This function accepts an incoming string, encrypts it using EncryptBytes func and returns the result in bytes.
Encrypt a string This function accepts an incoming string, encrypts it using EncryptBytes func, encodes the bytearray to base64 string and returns the resultant string.
Encrypt a string This function accepts an incoming string, encrypts it using EncryptBytes func, encodes the bytearray to base64 string and returns the resultant string.