📄 crypt32.def
字号:
; Definition file for 32-bit cryptlib DLL. Although the cryptlib header
; file already provides all the information contained in this file, the use
; of a redundant .DEF file is necessary because of VC++ braindamage. Many
; non-C development environments require the use of the Pascal calling
; convention for Windows DLL's, however when this is used (via __stdcall) in
; VC++, it mangles the function names, which means the other environments
; can't even see the entry points, let alone call them.
;
; To avoid this, it's necessary to include this .DEF file to tell VC++ not to
; mangle the exported names. It'll still try to mangle them, but when the
; linker sees the mangled names and the unmangled versions in this file, it
; quietly forgets the mangled versions and uses these ones instead.
;
; An alternative way to fix this is to use a series of pragmas like:
;
; #pragma comment( linker, "/export:cryptInit=_cryptInit:0" )
;
; in one of the source modules, but this is even uglier than the .DEF hack.
LIBRARY CL32
DESCRIPTION 'cryptlib Encryption DLL'
EXPORTS cryptAddCertExtension
cryptAddPrivateKey
cryptAddPublicKey
cryptAddRandom
cryptAsyncCancel
cryptAsyncQuery
cryptCAAddItem
cryptCACertManagement
cryptCADeleteItem
cryptCAGetItem
cryptCheckCert
cryptCheckSignature
cryptCheckSignatureEx
cryptCreateCert
cryptCreateContext
cryptCreateEnvelope
cryptCreateSession
cryptCreateSignature
cryptCreateSignatureEx
cryptDecrypt
cryptDeleteAttribute
cryptDeleteCertExtension
cryptDeleteKey
cryptDestroyCert
cryptDestroyContext
cryptDestroyEnvelope
cryptDestroyObject
cryptDestroySession
cryptDeviceClose
cryptDeviceCreateContext
cryptDeviceOpen
cryptDeviceQueryCapability
cryptEncrypt
cryptEnd
cryptExportCert
cryptExportKey
cryptExportKeyEx
cryptFlushData
cryptGenerateKey
cryptGenerateKeyAsync
cryptGetAttribute
cryptGetAttributeString
cryptGetCertExtension
cryptGetPrivateKey
cryptGetPublicKey
cryptImportCert
cryptImportKey
cryptImportKeyEx
cryptInit
cryptKeysetClose
cryptKeysetOpen
cryptLogin
cryptLogout
cryptPopData
cryptPushData
cryptQueryCapability
cryptQueryObject
cryptSetAttribute
cryptSetAttributeString
cryptSignCert
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -