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

📄 modrijndael.bas

📁 Rjindeal加密算法
💻 BAS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -