Merge pull request #9376 from sfc-gh-yiwu/encrypt_build

EaR: fix BlobCipher.h build failure
This commit is contained in:
Jingyu Zhou 2023-02-14 16:16:18 -08:00 committed by GitHub
commit 2fe32610d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -170,8 +170,6 @@ struct BlobCipherDetails {
const EncryptCipherRandomSalt& random)
: encryptDomainId(dId), baseCipherId(bId), salt(random) {}
bool isValid() const { return encryptDomainId != INVALID_ENCRYPT_DOMAIN_ID; }
bool operator==(const BlobCipherDetails& o) const {
return encryptDomainId == o.encryptDomainId && baseCipherId == o.baseCipherId && salt == o.salt;
}