Changeset 65098 in vbox for trunk/src/VBox/Runtime/common/crypto/store-inmem.cpp
- Timestamp:
- Jan 4, 2017 12:05:08 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/crypto/store-inmem.cpp
r62564 r65098 202 202 203 203 204 /** @interface_method_impl{RTCRSTOREPROVIDER, 204 /** @interface_method_impl{RTCRSTOREPROVIDER,pfnDestroyStore} */ 205 205 static DECLCALLBACK(void) rtCrStoreInMem_DestroyStore(void *pvProvider) 206 206 { … … 224 224 225 225 226 /** @interface_method_impl{RTCRSTOREPROVIDER, 226 /** @interface_method_impl{RTCRSTOREPROVIDER,pfnCertCtxQueryPrivateKey} */ 227 227 static DECLCALLBACK(int) rtCrStoreInMem_CertCtxQueryPrivateKey(void *pvProvider, PRTCRCERTCTXINT pCertCtx, 228 228 uint8_t *pbKey, size_t cbKey, size_t *pcbKeyRet) … … 234 234 235 235 236 /** @interface_method_impl{RTCRSTOREPROVIDER, 236 /** @interface_method_impl{RTCRSTOREPROVIDER,pfnCertFindAll} */ 237 237 static DECLCALLBACK(int) rtCrStoreInMem_CertFindAll(void *pvProvider, PRTCRSTORECERTSEARCH pSearch) 238 238 { … … 245 245 246 246 247 /** @interface_method_impl{RTCRSTOREPROVIDER, 247 /** @interface_method_impl{RTCRSTOREPROVIDER,pfnCertSearchNext} */ 248 248 static DECLCALLBACK(PCRTCRCERTCTX) rtCrStoreInMem_CertSearchNext(void *pvProvider, PRTCRSTORECERTSEARCH pSearch) 249 249 { … … 263 263 264 264 265 /** @interface_method_impl{RTCRSTOREPROVIDER, 265 /** @interface_method_impl{RTCRSTOREPROVIDER,pfnCertSearchDestroy} */ 266 266 static DECLCALLBACK(void) rtCrStoreInMem_CertSearchDestroy(void *pvProvider, PRTCRSTORECERTSEARCH pSearch) 267 267 { … … 275 275 276 276 277 /** @interface_method_impl{RTCRSTOREPROVIDER, 277 /** @interface_method_impl{RTCRSTOREPROVIDER,pfnCertSearchDestroy} */ 278 278 static DECLCALLBACK(int) rtCrStoreInMem_CertAddEncoded(void *pvProvider, uint32_t fFlags, 279 279 uint8_t const *pbEncoded, uint32_t cbEncoded, PRTERRINFO pErrInfo)
Note:
See TracChangeset
for help on using the changeset viewer.