25 lines
467 B
Modula-2
25 lines
467 B
Modula-2
; Definition file for Crypt DLL
|
|
|
|
LIBRARY CRYPT
|
|
DESCRIPTION 'Encryption DLL'
|
|
EXETYPE WINDOWS 3
|
|
CODE PRELOAD MOVEABLE DISCARDABLE
|
|
DATA PRELOAD MOVEABLE SINGLE
|
|
HEAPSIZE 8192
|
|
EXPORTS initLibrary
|
|
endLibrary
|
|
queryModeAvailability
|
|
queryAlgoAvailability
|
|
queryAlgoModeInformation
|
|
queryContextInformation
|
|
initCryptContext
|
|
initCryptContextEx
|
|
destroyCryptContext
|
|
loadCryptContext
|
|
loadIV
|
|
retrieveIV
|
|
encryptBuffer
|
|
decryptBuffer
|
|
|
|
IMPORTS
|