Visual Basic 6

Hier eine kurze Beispielanwendung die aufzeigen soll, wie ein NC-Programm ver- und entschlüsselt wird:

Screenshot

Visual Basic 6 1:

Codebeispiel

Die Zeilen zeigen den Gebrauch der TcISGEncryption.dll mit VB6:

Private Declare Function encode_cnc_file Lib "TcISGEncrypt.dll" _
(ByVal pIn As String, ByVal pOut As String, ByVal password As
String) As Long

Private Declare Function decode_cnc_file Lib "TcISGEncrypt.dll" _
(ByVal pDest As String, ByVal pName As String, ByVal Offset
As Long, ByVal length As Long, ByVal password As String) As
Long

----------------------------------------------------------------------

Dim fileIn As String
Dim fileOut As String
Dim password As String

encode_cnc_file(fileIn, fileOut, password)

----------------------------------------------------------------------

Dim Offset As Long
Dim dest As String * 10
DimpasswordAs String
Dimactive_file_nameAs String

Call decode_cnc_file(dest, active_file_name, Offset, Len(dest), password)