| 108 | } |
| 109 | |
| 110 | FileDecryptionProperties::Builder* FileDecryptionProperties::Builder::aad_prefix( |
| 111 | std::string aad_prefix) { |
| 112 | if (aad_prefix.empty()) { |
| 113 | return this; |
| 114 | } |
| 115 | DCHECK(aad_prefix_.empty()); |
| 116 | aad_prefix_ = std::move(aad_prefix); |
| 117 | return this; |
| 118 | } |
| 119 | |
| 120 | FileDecryptionProperties::Builder* FileDecryptionProperties::Builder::aad_prefix_verifier( |
| 121 | std::shared_ptr<AADPrefixVerifier> aad_prefix_verifier) { |