Changeset 59669 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Feb 15, 2016 12:36:48 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 105526
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ApplianceImplPrivate.h
r59621 r59669 69 69 , hMemFileTheirManifest(NIL_RTVFSFILE) 70 70 , fSignerCertLoaded(false) 71 , fCertificateValid(false) 71 72 , fSignatureValid(false) 72 73 , pbSignedDigest(NULL) … … 127 128 enmSignedDigestType = RTDIGESTTYPE_INVALID; 128 129 fSignatureValid = false; 130 fCertificateValid = false; 129 131 fDeterminedDigestTypes = false; 130 fDigestTypes = RTMANIFEST_ATTR_SHA1 | RTMANIFEST_ATTR_SHA256 ;132 fDigestTypes = RTMANIFEST_ATTR_SHA1 | RTMANIFEST_ATTR_SHA256 | RTMANIFEST_ATTR_SHA512; 131 133 } 132 134 … … 165 167 /** Set if the SignerCert member contains usable data. */ 166 168 bool fSignerCertLoaded; 167 /** Set by read() if it found a certificate and the signature is fine. */ 169 /** Set by read() when the SignerCert checked out fine. */ 170 bool fCertificateValid; 171 /** Set by read() if pbSignedDigest verified correctly against SignerCert. */ 168 172 bool fSignatureValid; 169 173 /** The signed digest of the manifest. */
Note:
See TracChangeset
for help on using the changeset viewer.