You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,12 @@ SELECT generate_key(16) as key;
30
30
31
31
will produce a 16-byte base64 encoded key.
32
32
33
+
### Encrypted Types
34
+
In VCrypt, an encrypted value is represented as a `STRUCT` type internally. Because this is somewhat complex to define, we implemented `ENCRYPTED` types.
35
+
Each encrypted type is prefixed by `E_`; for example, an encrypted `INTEGER` is represented as `E_INTEGER`.
36
+
37
+
All non-nested existing types in DuckDB are currently supported by VCrypt.
38
+
33
39
### Encrypting and Decrypting
34
40
35
41
For Vectorized Encryption (batch encryption/decryption), Encrypt or Decrypt with:
0 commit comments