⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 module1.vb

📁 软件加密保护
💻 VB
字号:
Module ROCKEY4Demo

    'ROCKEY4ND Commands.
    Enum Ry4CMD As Short
        RY_FIND = 1             'Find Rockey4.
        RY_FIND_NEXT            'Find next Rockey4.
        RY_OPEN                 'Open 
        RY_CLOSE                'Close
        RY_READ                 'Read UDZ
        RY_WRITE                'Write UDZ
        RY_RANDOM               'Random
        RY_SEED                 'Seed code	
        RY_WRITE_USERID         'Write UID
        RY_READ_USERID          'Read UID		
        RY_SET_MODULE           'Write module
        RY_CHECK_MODULE         'Check module status		
        RY_WRITE_ARITHMETIC     'Write UAZ
        RY_CALCULATE1           'Calculate 1
        RY_CALCULATE2           'Calculate 2
        RY_CALCULATE3           'Calculate 3
        RY_DECREASE             'Decrease
    End Enum

    'ROCKEY4 type definations
    Enum RY4TYPE As Integer
        TYPE_ROCKEY4 = 1        'Normal Ry4.
        TYPE_ROCKEY4Plus        'Ry4Plus.
        TYPE_ROCKEYUSB          'Ry4 USB.
        TYPE_ROCKEYUSBPlus      'Ry4 USB Plus
        TYPE_ROCKEYNET          'NetRy4
        TYPE_ROCKEYUSBNET       'NetRy4 USB.
    End Enum

    'ROCKEY4 Result definations.
    Public Enum Ry4Result As Integer
        ERR_SUCCESS = &H0                       'No error.
        ERR_NO_PARALLEL_PORT = &H80300001       '(0x80300001)No parallel port on the computer 
        ERR_NO_DRIVER                           '(0x80300002)No driver installed 
        ERR_NO_ROCKEY                           '(0x80300003)No ROCKEY4 dongle 
        ERR_INVALID_PASSWORD                    '(0x80300004)ROCKEY4 dongle found  but base password is incorrect
        ERR_INVALID_PASSWORD_OR_ID              '(0x80300005)Wrong password or ROCKEY4 HID
        ERR_SETID                               '(0x80300006)Set ROCKEY4 HID wrong
        ERR_INVALID_ADDR_OR_SIZE                '(0x80300007)Read/Write address is wrong
        ERR_UNKNOWN_COMMAND                     '(0x80300008)No such command
        ERR_NOTBELEVEL3                         '(0x80300009)Inside error
        ERR_READ                                '(0x8030000A)Read error
        ERR_WRITE                               '(0x8030000B)Write error
        ERR_RANDOM                              '(0x8030000C)Random error
        ERR_SEED                                '(0x8030000D)Seed Code error
        ERR_CALCULATE                           '(0x8030000E)Calculate error
        ERR_NO_OPEN                             '(0x8030000F)Ry_Open must precede this operation
        ERR_OPEN_OVERFLOW                       '(0x80300010)Too many open dongles (>16)
        ERR_NOMORE                              '(0x80300011)No more dongle
        ERR_NEED_FIND                           '(0x80300012)No Find before FindNext
        ERR_DECREASE                            '(0x80300013)Decrease error
        ERR_AR_BADCOMMAND                       '(0x80300014)Arithmetic instruction error
        ERR_AR_UNKNOWN_OPCODE                   '(0x80300015)Arithmetic operator error
        ERR_AR_WRONGBEGIN                       '(0x80300016)A constant. cannot be in the first instruction
        ERR_AR_WRONG_END                        '(0x80300017)A constant. cannot be in the last instruction 
        ERR_AR_VALUEOVERFLOW                    '(0x80300018)Const number > 63

        ERR_UNKNOWN = &H8030FFFF                '(0x8030FFFF)Unknown error 

        ERR_RECEIVE_NULL = &H80300100           '(0x80300100)Parallel port can not recieve data.
        ERR_PRNPORT_BUSY = &H80300101           '(0x80300101)Parallel port is busy.

    End Enum


    Sub Main()

        'ROCKEY4 Parameters
        Dim FuncID As UInt16            'Function ID
        Dim handle As UInt16            'Handle
        Dim Lp1, Lp2 As UInt32          'Long parameters
        Dim p1, p2, p3, p4 As UInt16    'Short parameters
        '       Dim Buf As Object       'Buffer
        Dim Buf(1024) As Byte



        'Create ROCKEY4 class.
        Dim Class1 As New Rockey4ND.Rockey4NDControl()

        'record found Rockey4(s).
        Dim iMaxRockey As Integer = 0
        Dim uiarrRy4ID(32) As UInt32
        Dim iCurrID As UInt32


        Try
            'demo0: Find rockey. id=0,need setting p1,p2,p3,p4to password.
            FuncID = Convert.ToUInt16(Ry4CMD.RY_FIND)
            '            Buf = 0

            'Set password.
            p1 = Convert.ToUInt16(&HC44C)
            p2 = Convert.ToUInt16(&HC8F8)
            p3 = Convert.ToUInt16(&H799)
            p4 = Convert.ToUInt16(&HC43B)

            Console.WriteLine("Finding ROCKEY4 ND...")
            Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

            If Lp1.ToString = 0 Then

                Console.WriteLine("Not Found Rockey4ND!")
                Console.ReadKey()
                Exit Sub
            End If
            
            Console.WriteLine("({0}) {1:X} ", iMaxRockey, Lp1)


            'record it.
            uiarrRy4ID(iMaxRockey) = Lp1
            iMaxRockey = iMaxRockey + 1

            '      While True

            'demo1: Find Next Rockey.
            '      FuncID = Convert.ToUInt16(Ry4CMD.RY_FIND_NEXT)
            '                Buf = 0

            'Set password.
            '     p1 = Convert.ToUInt16(&HC44C)
            '    p2 = Convert.ToUInt16(&HC8F8)
            '    p3 = Convert.ToUInt16(&H799)
            '   p4 = Convert.ToUInt16(&HC43B)

            '   Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

            'Print result to screen. Lp1 is ID, buf is Server name.
            '   Console.WriteLine("({0}) {1:X} ", iMaxRockey, Lp1)

            'record it.
            '   uiarrRy4ID(iMaxRockey) = Lp1
            ' iMaxRockey = iMaxRockey + 1

            ' End While


        Catch e As System.Runtime.InteropServices.COMException

            Dim hRet As Ry4Result = e.ErrorCode

            If hRet = Ry4Result.ERR_NO_ROCKEY Or hRet = Ry4Result.ERR_NOMORE Then
                'No rockey found or no more rockey found, Find OK, print result
                Console.WriteLine("Found {0} ROCKEY4(s)", iMaxRockey)
            Else
                'other error code, print it in hex format. 
                Console.WriteLine("Failed, codr {0:X}, {1}", hRet, hRet.ToString())
            End If

        End Try


        'select  a ROCKEY4 device to open.
        If (iMaxRockey > 1) Then
            Console.WriteLine("Please input the index to open.(>=0,<{0})", iMaxRockey)
            iCurrID = uiarrRy4ID(Convert.ToInt32(Console.ReadLine()))
        Else
            iCurrID = uiarrRy4ID(Convert.ToInt32(0))
        End If


        Try

            'Demo3: Open. LP1 is Ry4ID, LP2 is Module number.
            FuncID = Convert.ToUInt16(Ry4CMD.RY_OPEN)
            Lp1 = iCurrID
            p1 = Convert.ToUInt16(&HC44C)
            p2 = Convert.ToUInt16(&HC8F8)
            p3 = Convert.ToUInt16(&H799)
            p4 = Convert.ToUInt16(&HC43B)

            Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

            'opened succeeded. handle ID in handle, type information in lp2.
            Dim rType As RY4TYPE = Convert.ToInt32(Lp2)
            Console.WriteLine("Opened,handle is {0:X4},type is {1}", handle, rType.ToString)


            'Demo4: Write 24 bytes to UDZ. p1=index of first address, p2=length,obBuffer=data,in byte array..

            Dim byWriteData(24) As Byte
            Dim i As Byte

            For i = 0 To 23
                byWriteData(i) = i
            Next

            Console.Write("Writting 24 bytes to user data zone...")

            FuncID = Convert.ToUInt16(Ry4CMD.RY_WRITE)
            p1 = Convert.ToUInt16(0)
            p2 = Convert.ToUInt16(24)       '24 bytes
            Buf = byWriteData               'Set buf to byte array. you can also set it to a string.

            Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)
            Console.WriteLine("[OK]")


            'Demo5: Read UDZ Zone, 24 bytes.
            Console.WriteLine("Reading 24 bytes from user data zone...")

            FuncID = Convert.ToUInt16(Ry4CMD.RY_READ)
            p1 = Convert.ToUInt16(0)
            p2 = Convert.ToUInt16(24)       '24 bytes
            '            Buf = 0                         'no input data

            Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

            Dim byReadData() As Byte = Buf

            For i = 0 To 23
                Console.Write("{0:X2} ", byReadData(i))
            Next

            Console.WriteLine("[OK]")

            'Demo6: Generate 4 random number.

            Dim usRandom(4) As UInt16

            Console.WriteLine("Generating 8 bytes random...")

            For i = 0 To 3

                FuncID = Convert.ToUInt16(Ry4CMD.RY_RANDOM)
                '                Buf = 0                         'no input data

                Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

                usRandom(i) = p1        'Random in p1.

            Next

            ' Print result to screen
            For i = 0 To 3
                Console.Write("{0:X4} ", usRandom(i))
            Next

            Console.WriteLine("[OK]")

            'Demo7: Generate seed code. lp2 is seed.
            Console.WriteLine("Generating seed code, seed=0x193F4701...")

            FuncID = Convert.ToUInt16(Ry4CMD.RY_SEED)
            Lp2 = Convert.ToUInt32(&H193F4701)              'a 32 bit seed
            Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

            Console.WriteLine("[OK], seed code is {0:X4} {1:X2} {2:X4} {3:X4}", p1, p2, p3, p4)

            'Demo8:Write UID to 0x19761223
            Console.WriteLine("Writting user ID, ID=0x19761223...")

            FuncID = Convert.ToUInt16(Ry4CMD.RY_WRITE_USERID)
            Lp1 = Convert.ToUInt32(&H19761223)

            Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

            Console.WriteLine("[OK]")

            Lp1 = Convert.ToUInt32(0)


            'Demo9: Read UID.
            Console.WriteLine("Reading user ID...")

            FuncID = Convert.ToUInt16(Ry4CMD.RY_READ_USERID)
            Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

            ' UID in lp1
            Console.WriteLine("[OK],User ID is {0:X8}", Lp1)


            'Demo10:Set module 0x08, number is 3, can be decreased.
            Console.WriteLine("Setting module 8, number is 3, can be decreased...")

            FuncID = Convert.ToUInt16(Ry4CMD.RY_SET_MODULE)

            p1 = Convert.ToUInt16(8)    'Module 8
            p2 = Convert.ToUInt16(3)    'Set to 3
            p3 = Convert.ToUInt16(1)    'can be decreased

            Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

            Console.WriteLine("[OK]")

            'Demo11:Check module. p1=module index
            Console.WriteLine("Checking module 8...")

            FuncID = Convert.ToUInt16(Ry4CMD.RY_CHECK_MODULE)
            p1 = Convert.ToUInt16(8)
            Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

            Console.WriteLine("[OK], bValidate={0}, bDecreasable={1}", p2, p3)


            'Demo12: Decrease 3 times. p1=module index.
            For i = 1 To 3

                Console.Write("Module 8,Decrease {0}... ", i)

                FuncID = Convert.ToUInt16(Ry4CMD.RY_DECREASE)
                p1 = Convert.ToUInt16(8)
                Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

                'Check module status after every decrease
                FuncID = Convert.ToUInt16(Ry4CMD.RY_CHECK_MODULE)
                p1 = Convert.ToUInt16(8)
                Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

                Console.WriteLine("[OK], bValidate={0}, bDecreasable={1}", p2, p3)

            Next

            'Demo13:Write arithmetic to UAZ,

            Dim csArith As String = "A=A+B,C=C+D,B=E+F,D=G+H"
            Console.WriteLine("Writting arithmetic to UAZ,{0}", csArith)

            FuncID = Convert.ToUInt16(Ry4CMD.RY_WRITE_ARITHMETIC)
            p1 = Convert.ToUInt16(0)        'Start at 0
            ' Buf = csArith

            Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

            Console.WriteLine("[OK]")

            'Buf = 0     'Clear buffer
            'Demo14,Calculate 1
            Console.Write("Calculate 1 ...")

            FuncID = Convert.ToUInt16(Ry4CMD.RY_CALCULATE1)

            'Set parameters
            Lp1 = Convert.ToUInt32(0)
            Lp2 = Convert.ToUInt32(8)

            p1 = Convert.ToUInt16(1)
            p2 = Convert.ToUInt16(2)
            p3 = Convert.ToUInt16(3)
            p4 = Convert.ToUInt16(4)

            Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

            'print result to screen.
            Console.WriteLine("[OK],result: A={0:X4},B={1:X4},C={2:X4},D={3:X4}", p1, p2, p3, p4)


            'Demo15,Calculate 2
            Console.Write("Calculate 2 ...")

            FuncID = Convert.ToUInt16(Ry4CMD.RY_CALCULATE2)

            'Set parameters
            Lp1 = Convert.ToUInt32(0)
            Lp2 = Convert.ToUInt32(&H19303A09)

            p1 = Convert.ToUInt16(1)
            p2 = Convert.ToUInt16(2)
            p3 = Convert.ToUInt16(3)
            p4 = Convert.ToUInt16(4)

            Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

            'print result to screen.
            Console.WriteLine("[OK],result: A={0:X4},B={1:X4},C={2:X4},D={3:X4}", p1, p2, p3, p4)

            'Demo16,Calculate 3
            Console.Write("Calculate 3 ...")

            FuncID = Convert.ToUInt16(Ry4CMD.RY_CALCULATE3)

            'Set parameters
            Lp1 = Convert.ToUInt32(0)
            Lp2 = Convert.ToUInt32(8)

            p1 = Convert.ToUInt16(1)
            p2 = Convert.ToUInt16(2)
            p3 = Convert.ToUInt16(3)
            p4 = Convert.ToUInt16(4)

            Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

            'print result to screen.
            Console.WriteLine("[OK],result: A={0:X4},B={1:X4},C={2:X4},D={3:X4}", p1, p2, p3, p4)




            'Demo17,Close.           
            Console.Write("Closing handle {0:X}...", handle)

            FuncID = Convert.ToUInt16(Ry4CMD.RY_CLOSE)
            '            Buf = 0
            Class1.Rockey(FuncID, handle, Lp1, Lp2, p1, p2, p3, p4, Buf)

            Console.WriteLine("[OK]")

            'Press any key to exit.
            Console.ReadLine()



        Catch e As System.Runtime.InteropServices.COMException

            Dim hRet As Ry4Result = e.ErrorCode

            Console.WriteLine("Failed, codr {0:X}, {1}", hRet, hRet.ToString())



        End Try
        
    End Sub

End Module

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -