- Timestamp:
- Jan 8, 2025 3:24:26 PM (10 days ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MachineImpl.h
r106516 r107526 218 218 219 219 #ifdef VBOX_WITH_FULL_VM_ENCRYPTION 220 /* Store for secret keys. */ 221 SecretKeyStore *mpKeyStore; 220 /** Store for secret keys. */ 221 SecretKeyStore *mpKeyStore; 222 /** @todo r=andy Document me ... what is encrypted? Rename to mfEncrypted. */ 222 223 BOOL fEncrypted; 223 /* KeyId of the password encrypting the DEK */224 /** KeyId of the password encrypting the DEK */ 224 225 com::Utf8Str mstrKeyId; 225 /* Store containing the DEK used for encrypting the VM */226 /** Store containing the DEK used for encrypting the VM */ 226 227 com::Utf8Str mstrKeyStore; 227 /* KeyId of the password encrypting the DEK for log files */228 /** KeyId of the password encrypting the DEK for log files */ 228 229 com::Utf8Str mstrLogKeyId; 229 /* Store containing the DEK used for encrypting the VM's log files */230 /** Store containing the DEK used for encrypting the VM's log files */ 230 231 com::Utf8Str mstrLogKeyStore; 231 232 #endif -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r107262 r107526 213 213 #ifdef VBOX_WITH_FULL_VM_ENCRYPTION 214 214 mpKeyStore = NULL; 215 fEncrypted = false; 215 216 #endif 216 217 } … … 245 246 mCpuExecutionCap = 100; /* Maximum CPU execution cap by default. */ 246 247 mCpuIdPortabilityLevel = 0; 248 mExecEngine = VMExecutionEngine_NotSet; 247 249 mCpuProfile = "host"; 248 250 … … 15499 15501 mstrNewPasswordId(aNewPasswordId), 15500 15502 mForce(aForce), 15501 mllMedia(llMedia) 15503 mllMedia(llMedia), 15504 m_pCryptoIf(NULL) 15502 15505 {} 15503 15506
Note:
See TracChangeset
for help on using the changeset viewer.