Encrypt a set of columns with a key. Format of the string is a key-list. key-list = key (';' key-list)? key = key-name ':' field-list field-list = field-name ( ',' field-list )? field-name = number | field-part ('.' field-name)? field-part = qu
(String value)
| 848 | * @return this |
| 849 | */ |
| 850 | public WriterOptions encrypt(String value) { |
| 851 | encryption = value; |
| 852 | return this; |
| 853 | } |
| 854 | |
| 855 | /** |
| 856 | * Set the masks for the unencrypted data. |
no outgoing calls