- Timestamp:
- Sep 17, 2018 3:50:55 PM (6 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r74312 r74313 366 366 common/checksum/sha512t224str.cpp \ 367 367 common/checksum/sha512t256str.cpp \ 368 common/crypto/cipher-openssl.cpp \ 368 369 common/crypto/digest-core.cpp \ 369 370 common/crypto/digest-builtin.cpp \ -
trunk/src/VBox/Runtime/VBox/VBoxRTImp.def
r74295 r74313 776 776 RTCritSectTryEnter 777 777 RTCritSectTryEnterDebug 778 RTCrCipherDecrypt 779 RTCrCipherEncrypt 780 RTCrCipherGetBlockSize 781 RTCrCipherGetInitializationVectorLength 782 RTCrCipherGetKeyVectorLength 783 RTCrCipherOpenByType 784 RTCrCipherRetain 785 RTCrCipherRelease 778 786 RTCrDigestClone 779 787 RTCrDigestCreate … … 814 822 RTCrKeyQueryRsaModulus 815 823 RTCrKeyQueryRsaPrivateExponent 816 RTCrRc4 817 RTCrRc4SetKey 824 RTCrPkcs5Pbkdf2Hmac 818 825 RTCrPkixGetCiperOidFromSignatureAlgorithm 819 826 RTCrPkixPubKeySignDigest … … 830 837 RTCrPkixSignatureVerifyBitString 831 838 RTCrPkixSignatureVerifyOctetString 839 RTCrRandBytes 840 RTCrRc4 841 RTCrRc4SetKey 832 842 RTCrSslCreate 833 843 RTCrSslCreateSessionForNativeSocket -
trunk/src/VBox/Runtime/include/internal/magics.h
r74295 r74313 35 35 /** Magic number for RTAIOMGRINTFILE::u32Magic. (Ephraim Kishon) */ 36 36 #define RTAIOMGRFILE_MAGIC UINT32_C(0x19240823) 37 /** Magic number for RTCRCIPHERINT::u32Magic. (Michael Wolff) */ 38 #define RTCRCIPHERINT_MAGIC UINT32_C(0x19530827) 37 39 /** Magic value for RTCRKEYINT::u32Magic. (Ronald Linn Rivest) */ 38 40 #define RTCRKEYINT_MAGIC UINT32_C(0x19470506)
Note:
See TracChangeset
for help on using the changeset viewer.