Merge pull request #9376 from sfc-gh-yiwu/encrypt_build
EaR: fix BlobCipher.h build failure
This commit is contained in:
commit
2fe32610d6
|
@ -170,8 +170,6 @@ struct BlobCipherDetails {
|
||||||
const EncryptCipherRandomSalt& random)
|
const EncryptCipherRandomSalt& random)
|
||||||
: encryptDomainId(dId), baseCipherId(bId), salt(random) {}
|
: encryptDomainId(dId), baseCipherId(bId), salt(random) {}
|
||||||
|
|
||||||
bool isValid() const { return encryptDomainId != INVALID_ENCRYPT_DOMAIN_ID; }
|
|
||||||
|
|
||||||
bool operator==(const BlobCipherDetails& o) const {
|
bool operator==(const BlobCipherDetails& o) const {
|
||||||
return encryptDomainId == o.encryptDomainId && baseCipherId == o.baseCipherId && salt == o.salt;
|
return encryptDomainId == o.encryptDomainId && baseCipherId == o.baseCipherId && salt == o.salt;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue