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

📄 comp_vbcreorderble.bas

📁 21加密算法,用vB语言编写实现,可了解各种加密算法的结构
💻 BAS
📖 第 1 页 / 共 2 页
字号:
Attribute VB_Name = "Comp_VBCReorderble"


Option Explicit

'This is a 2 run method

Private Type Bitset
    LowValue As Integer
    Needed As Integer
End Type

Private Type MinMax
    Minimum As Integer
    Maximum As Integer
End Type

Private Type StartCount
    StartPos As Integer
    Count As Long
End Type

Private OutPos As Long
Private OutByteBuf As Integer
Private OutBitCount As Integer
Private ReadBitPos As Integer
Private MinValToAdd(7) As Integer
Private LastChar As Byte
Private ExtraBits(12) As Bitset

'Here whe're gone try to compress the on the VBC-Reorderble method
Public Sub Compress_VBC_Reorderble(ByteArray() As Byte)
    Dim X As Long
    Dim OutStream() As Byte
    Dim NewLen As Long
    Dim Char As Byte
    Dim ExtBits As Integer
'first whe're gone try to find the best method to get the best gain/lost ratio
    NewLen = Find_Best2(ByteArray)
    LastChar = 0
    ReDim OutStream(NewLen)         'worst case scenario (exact case if no followers found)
'first we're gone store the values wich belong to the lowest value of a group of 64,32,16,8 or 4 characters
    For X = 1 To 12
        'whe devide it by four, cause it's always a factor of four, to store it in six bits
        'it takes always twelve bytes and ((12*8)-(12*6))/8 = 3 bytes lost
        Call AddBitsToArray(OutStream, Int(ExtraBits(X).LowValue / 4), 6)
    Next
    For X = 0 To UBound(ByteArray)
        Char = ByteArray(X)                             'get the next character
        ExtBits = getBitSize(Char)                      'Find number of bits to store according to char
        If ExtBits = 0 Then                             'if it is the same as the last character
            Call AddBitsToArray(OutStream, 0, 2)        'whe only need to store 2 bits
        Else
            Call AddBitsToArray(OutStream, CLng(ExtBits) + 3, 4)    'otherwise store 4 bits
        End If
        If ExtBits <> 0 Then
'extract the lowest value and store it with the minimum number of bits needed
            Call AddBitsToArray(OutStream, CLng(Char - ExtraBits(ExtBits).LowValue), ExtraBits(ExtBits).Needed)
        End If
        LastChar = Char
    Next
'maybe we have some bits leftover so lets store them
    If OutBitCount < 8 Then
        Do While OutBitCount < 8
            OutByteBuf = OutByteBuf * 2
            OutBitCount = OutBitCount + 1
        Loop
        OutStream(OutPos) = OutByteBuf: OutPos = OutPos + 1
    End If
    OutPos = OutPos - 1
    NewLen = UBound(ByteArray)
    ReDim ByteArray(OutPos + 4)
'store the original lenght of the file
    ByteArray(0) = Int(NewLen / &H1000000) And &HFF
    ByteArray(1) = Int(NewLen / &H10000) And &HFF
    ByteArray(2) = Int(NewLen / &H100) And &HFF
    ByteArray(3) = NewLen And &HFF
'and copy in the ByteArray to return it to the caller
    Call CopyMem(ByteArray(4), OutStream(0), OutPos + 1)
End Sub

'Here whe're trying to find the best methods to use
Private Function Find_Best(ByteArray() As Byte) As Long
    Dim X As Long
    Dim Y As Integer
    Dim Z As Integer
    Dim Bestway(12) As MinMax
    Dim CharCount(255) As Long
    Dim Lowest As Long
    Dim CanBeDone As Boolean
    Dim TotCount As Long
    Dim StartVal As Integer
    Dim PosCount As Integer
    Dim NewLong As Long
    Dim FoundPos As Boolean
    Lowest = UBound(ByteArray)
'Get the frequentie of each character
    For X = 0 To UBound(ByteArray)
        CharCount(ByteArray(X)) = CharCount(ByteArray(X)) + 1
    Next
'init the coder to the standard values so you know how much bits needed for each group
    Call Init_VBC
    PosCount = 12
    Do While PosCount <> 0              'search for all groups
        FoundPos = False
        For X = 0 To 255 - (2 ^ ExtraBits(PosCount).Needed - 1) Step 4 'no need to go beyond limit range
            CanBeDone = True
'try to find if the starting value isn't already occupied
            For Z = 12 To PosCount + 1 Step -1
                If X + (2 ^ ExtraBits(PosCount).Needed - 1) >= Bestway(Z).Minimum And X <= Bestway(Z).Maximum Then
                    CanBeDone = False
                    Exit For
                End If
            Next
            If CanBeDone = True Then
                FoundPos = True
'if not occupied, get the total use of the particular number of bits
                TotCount = 0
                For Y = X To X + (2 ^ ExtraBits(PosCount).Needed - 1)
                    TotCount = TotCount + CharCount(Y)
                Next
                If TotCount <= Lowest Then
'if it is the lowest use, save the starting value
                    Lowest = TotCount
                    StartVal = X
                End If
            End If
        Next
        If FoundPos = False Then
'best match is found so lets store it
            NewLong = NewLong + Lowest * (ExtraBits(PosCount).Needed + 4)
            Bestway(PosCount).Minimum = StartVal
            Bestway(PosCount).Maximum = StartVal + (2 ^ ExtraBits(PosCount).Needed - 1)
            PosCount = PosCount - 1
            Lowest = UBound(ByteArray)
        End If
    Loop
'transpose them to the variable that can be used troughout the programm
    For X = 1 To 12
        ExtraBits(X).LowValue = Bestway(X).Minimum
    Next
    Find_Best = (NewLong / 8) + 9
End Function

Private Function Find_Best2(ByteArray() As Byte) As Long
    Dim X As Long
    Dim Y As Integer
    Dim Z As Integer
    Dim i As Integer
    Dim j As Integer
    Dim t As StartCount
    Dim NewFileLong As Long
    Dim NuPos As Integer
    Dim LastPos As Integer
    Dim TotCount As Long
    Dim Bestway(12) As MinMax
    Dim CharCount(255) As Long
    Dim DifBitLength As Integer
    Dim BitLen(8) As Integer
    Dim BitNeed(8) As Integer
    Dim Stpoint(8) As Integer
    Dim MinBit As Integer
    Dim MaxBit As Integer
    Dim S() As StartCount  'min=2 max=6 bits
    Dim PosCount As Integer
    Dim PosCBeg As Integer
    Dim FoundFit As Boolean
    Dim NowNeed As Integer
    Dim StilNeed As Integer
'Get the frequentie of each character
    For X = 0 To UBound(ByteArray)
        CharCount(ByteArray(X)) = CharCount(ByteArray(X)) + 1
    Next
'init the coder to the standard values so you know how much bits needed for each group
    Call Init_VBC
'Retrieve the posible bitlength
    NuPos = 0
    MinBit = 100
    MaxBit = 0
    For X = 1 To 12
        If ExtraBits(X).Needed <> NuPos Then
            DifBitLength = DifBitLength + 1
            NuPos = ExtraBits(X).Needed
            BitLen(DifBitLength) = NuPos
            Stpoint(NuPos) = 1
            If NuPos < MinBit Then MinBit = NuPos
            If NuPos > MaxBit Then MaxBit = NuPos
        End If
        BitNeed(NuPos) = BitNeed(NuPos) + 1
    Next
'set bounderies
    ReDim S(MaxBit, 256 / (2 ^ MinBit))
'select posible position for each bitlength
    PosCount = 0
    For X = 0 To 255 Step 2 ^ MinBit
        NuPos = X
        TotCount = 0
        PosCount = PosCount + 1
        For Y = 1 To DifBitLength
            LastPos = X + ((2 ^ BitLen(Y)))
            If LastPos <= 256 Then
                Do While NuPos < LastPos
                    TotCount = TotCount + CharCount(NuPos)
                    NuPos = NuPos + 1
                Loop
                S(BitLen(Y), PosCount).Count = TotCount
                S(BitLen(Y), PosCount).StartPos = X
            End If
        Next
    Next
'now that whe have the statistics of all posible positions
'lets find the cheapesed way to do devide the ascii table in 12 peaces

⌨️ 快捷键说明

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