AESDecoder

Cipher ››
Parent Previous Next

AESDecoder

Синтаксис

function AESDecoder(byref Text as string, byref Key as string) as String

Описание

Функция позволяет расшифровать строку, зашифрованную функцией AESEncoder по технологии AES.

Параметры

Text - зашифрованная строка

Key - ключ(пароль) для расшифровки

Платформы

Windows , Linux

Пример

#Include "window9.bi"
Dim As String st="Hello"
st=AESEncoder(st,"dvbjhrvh")
? st
st = AESDecoder(st,"dvbjhrvh")
? st
Sleep

Результат

7d? ╜[Пд┤╕~^V°
Hello

Created with the Personal Edition of HelpNDoc: iPhone web sites made easy