Changeset 59620 in vbox for trunk/include/iprt/crypto
- Timestamp:
- Feb 10, 2016 12:47:33 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 105459
- Location:
- trunk/include/iprt/crypto
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/crypto/digest.h
r58338 r59620 174 174 RTDECL(uint32_t) RTCrDigestRelease(RTCRDIGEST hDigest); 175 175 RTDECL(int) RTCrDigestUpdate(RTCRDIGEST hDigest, void const *pvData, size_t cbData); 176 RTDECL(int) RTCrDigestUpdateFromVfsFile(RTCRDIGEST hDigest, RTVFSFILE hVfsFile, bool fRewindFile); 176 177 RTDECL(int) RTCrDigestFinal(RTCRDIGEST hDigest, void *pvHash, size_t cbHash); 177 178 RTDECL(bool) RTCrDigestMatch(RTCRDIGEST hDigest, void const *pvHash, size_t cbHash); -
trunk/include/iprt/crypto/pkix.h
r56291 r59620 374 374 bool fEncrypt, PCRTASN1BITSTRING pKey,PCRTASN1DYNTYPE pParams); 375 375 RTDECL(int) RTCrPkixEncryptionCreateByObjId(PRTCRPKIXENCRYPTION phEncryption, PCRTASN1OBJID pObjId, bool fEncrypt, 376 PCRTASN1BITSTRING pKey, PCRTASN1DYNTYPE pParams);376 PCRTASN1BITSTRING pKey, PCRTASN1DYNTYPE pParams); 377 377 378 378 379 379 RTDECL(int) RTCrPkixEncryptionCreate(PRTCRPKIXENCRYPTION phEncryption, PCRTCRPKIXENCRYPTIONDESC pDesc, void *pvOpaque, 380 bool fEncrypt, PCRTASN1BITSTRING pKey, PCRTASN1DYNTYPE pParams);380 bool fEncrypt, PCRTASN1BITSTRING pKey, PCRTASN1DYNTYPE pParams); 381 381 RTDECL(int) RTCrPkixEncryptionReset(RTCRPKIXENCRYPTION hEncryption); 382 382 RTDECL(uint32_t) RTCrPkixEncryptionRetain(RTCRPKIXENCRYPTION hEncryption); -
trunk/include/iprt/crypto/x509.h
r58338 r59620 961 961 RTDECL(int) RTCrX509Certificate_ReadFromFile(PRTCRX509CERTIFICATE pCertificate, const char *pszFilename, uint32_t fFlags, 962 962 PCRTASN1ALLOCATORVTABLE pAllocator, PRTERRINFO pErrInfo); 963 RTDECL(int) RTCrX509Certificate_ReadFromBuffer(PRTCRX509CERTIFICATE pCertificate, const void *pvBuf, size_t cbBuf, 964 uint32_t fFlags, PCRTASN1ALLOCATORVTABLE pAllocator, 965 PRTERRINFO pErrInfo, const char *pszErrorTag); 966 963 967 964 968
Note:
See TracChangeset
for help on using the changeset viewer.