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
>Note: This statement must be executed when connected to CipherStash Proxy.
116
-
When connected to the database directly, it is a no-op.
116
+
When connected to the PostgreSQL database directly, it is a no-op.
117
117
118
118
## Storing data
119
119
120
-
Encrypted data is stored as `jsonb` values in the database, regardless of the original data type.
120
+
Encrypted data is stored as `jsonb` values in the PostgreSQL database, regardless of the original data type.
121
121
122
122
You can read more about the data format [here](docs/reference/PAYLOAD.md).
123
123
@@ -133,7 +133,7 @@ INSERT INTO users (encrypted_email) VALUES (
133
133
);
134
134
```
135
135
136
-
Data is stored in the database as:
136
+
Data is stored in the PostgreSQL database as:
137
137
138
138
```json
139
139
{
@@ -175,7 +175,7 @@ Data is returned as:
175
175
}
176
176
```
177
177
178
-
>Note: If you execute this query directly on the database, you will not see any plaintext data but rather the `jsonb` payload with the ciphertext.
178
+
>Note: If you execute this query directly on the PostgreSQL database, you will not see any plaintext data but rather the `jsonb` payload with the ciphertext.
179
179
180
180
## Configuring indexes for searching data
181
181
@@ -345,7 +345,7 @@ You can read more about the JSONB support in the [JSONB reference guide](docs/re
345
345
346
346
### How do I integrate CipherStash EQL with my application?
347
347
348
-
Use CipherStash Proxy to intercept database queries and handle encryption and decryption automatically.
348
+
Use CipherStash Proxy to intercept PostgreSQL queries and handle encryption and decryption automatically.
349
349
The proxy interacts with the database using the EQL functions and types defined in this documentation.
350
350
351
351
Use the [helper packages](#helper-packages) to integate EQL functions into your application.
0 commit comments