Changeset 95028 in vbox
- Timestamp:
- May 16, 2022 7:02:53 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151471
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/testcase/tstVBoxCrypto.cpp
r95027 r95028 57 57 58 58 /** 59 * Creates a new cryptographic context and returns the encoded string version on success. 60 * 59 * Creates a new cryptographic context and returns the encoded string version on success. 60 * 61 61 * @returns VBox status code. 62 62 * @param pCryptoIf Pointer to the cryptographic interface. … … 70 70 71 71 int rc = pCryptoIf->pfnCryptoCtxCreate(pszCipher, pszPassword, &hCryptoCtx); 72 if ( (RT_SUCCESS(rc)))72 if (RT_SUCCESS(rc)) 73 73 { 74 74 rc = pCryptoIf->pfnCryptoCtxSave(hCryptoCtx, ppszCtx); … … 82 82 83 83 /** 84 * Writes data to the given file until the given size is reached. 85 * 86 * @returns VBox status code. 87 * @param hVfsFile The file handle to write to. 84 * Writes data to the given file until the given size is reached. 85 * 86 * @returns VBox status code. 87 * @param hVfsFile The file handle to write to. 88 88 * @param cbWrite Number of bytes to write. 89 89 */ … … 150 150 151 151 /** 152 * Writes data to the given file until the given size is reached. 153 * 154 * @returns VBox status code. 155 * @param hVfsFile The file handle to write to. 152 * Writes data to the given file until the given size is reached. 153 * 154 * @returns VBox status code. 155 * @param hVfsFile The file handle to write to. 156 156 * @param cbFile Size of the file payload in bytes. 157 157 */
Note:
See TracChangeset
for help on using the changeset viewer.