We have an requirement to do the Couchbase Encryption to store some fields in encrypted format in document.
How do we perform encryption in Couchbase 5.1 ?
can you please help.
We are using JAVA SDK 2.2
Hi @kriteshmehra ,
We have recently released a beta version of field level encryption support. The extension library should be added as an additional dependency.
Hi @subhashni
Can you please help on this
Hi, i am using couchbase 5.5 and couchbase Java SDK 2.6.2. I have below fields in bucket ‘testdata’
1> accountNo
2> name
3> address
4> other information
accountNo and address data stored using couchbase encryption . How’s the way to get specific accountNo data using select query in Java SDK.
for example query is : select * from testdata where accountNo= $accountNo
if accountNo = 123 passed by client then it will not matched with encrypted data so what the way to get this data.
i already …