| 48 | } |
| 49 | |
| 50 | ColumnEncryptionProperties::Builder* ColumnEncryptionProperties::Builder::key( |
| 51 | SecureString column_key) { |
| 52 | if (column_key.empty()) return this; |
| 53 | |
| 54 | DCHECK(key_.empty()); |
| 55 | key_ = std::move(column_key); |
| 56 | return this; |
| 57 | } |
| 58 | |
| 59 | ColumnEncryptionProperties::Builder* ColumnEncryptionProperties::Builder::key_metadata( |
| 60 | std::string key_metadata) { |