This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'*************************************************************************************************** | |
'関数呼び出し | |
'*************************************************************************************************** | |
Sub 暗号化() | |
MsgBox "password -> " & EncryptStringTripleDES("password") | |
End Sub | |
Sub 復号化() | |
MsgBox "6pbpGQOC73TWEISe0qnwQA== -> " & DecryptStringTripleDES("6pbpGQOC73TWEISe0qnwQA==") | |
End Sub |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'*************************************************************************************************** | |
'オプション: | |
'*************************************************************************************************** | |
'事前の変数宣言(Dim [変数] As [型])を必須とする | |
Option Explicit | |
'*************************************************************************************************** | |
'定数宣言 | |
'*************************************************************************************************** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'1.オプション指定 | |
Option Explicit | |
'2.変数宣言 | |
Dim strFileName | |
Dim objApp | |
Dim wshShell | |
Dim fsObj | |
Dim ext | |
Dim excelExt |
NewerOlder