modrijndael.bas

来自「Rjindeal加密算法」· BAS 代码 · 共 21 行

BAS
21
字号
Attribute VB_Name = "modRijnDael"
Option Explicit

' This module contains all the constants and enums required
' (Until I find a better home for them)...
Public Const MAXKEYSIZE = 64
Public Const MAXNR = 14
Public Const MAXKB = (256 / 8)
Public Const MAXIVSIZE = 4

Public Enum RijnDaelEncDirections
    Encrypt = 0
    Decrypt = 1
End Enum
Public Enum RijnDaelCipherModes
    ECB = 1
    CBC = 2
    CFB1 = 3
End Enum

⌨️ 快捷键说明

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