Logo video2dn
  • Сохранить видео с ютуба
  • Категории
    • Музыка
    • Кино и Анимация
    • Автомобили
    • Животные
    • Спорт
    • Путешествия
    • Игры
    • Люди и Блоги
    • Юмор
    • Развлечения
    • Новости и Политика
    • Howto и Стиль
    • Diy своими руками
    • Образование
    • Наука и Технологии
    • Некоммерческие Организации
  • О сайте

Скачать или смотреть How to Make Your Own Encryption Program

  • intergiga
  • 2012-07-01
  • 28007
How to Make Your Own Encryption Program
How-to (Conference Subject)Make (software)OwnLifeEyesYour LoveYourEye (Quotation Subject)Your LifeYour OwnYour EyesHow to make a secret message'HowtocreateyourowndecryptionprogramHMPALLHmpall.comMake (magazine)Open YourWindowsChange YourLive YourChooseFreeComputer
  • ok logo

Скачать How to Make Your Own Encryption Program бесплатно в качестве 4к (2к / 1080p)

У нас вы можете скачать бесплатно How to Make Your Own Encryption Program или посмотреть видео с ютуба в максимальном доступном качестве.

Для скачивания выберите вариант из формы ниже:

  • Информация по загрузке:

Cкачать музыку How to Make Your Own Encryption Program бесплатно в формате MP3:

Если иконки загрузки не отобразились, ПОЖАЛУЙСТА, НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если у вас возникли трудности с загрузкой, пожалуйста, свяжитесь с нами по контактам, указанным в нижней части страницы.
Спасибо за использование сервиса video2dn.com

Описание к видео How to Make Your Own Encryption Program

The purpose of this video is to show you how to know the codes under the words which helps you in writing secret messages.
--------------------------------------------------------------------
The codes for the encryption program are:
'SIMPLE VB ENCRYPTION PROGRAM'
'Create a dialogue box that asks for the text to encode'
set x = WScript.CreateObject("WScript.Shell")
mySecret = inputbox("enter text to be encoded")
'Reverse the submitted text'
mySecret = StrReverse(mySecret)
'Open up an instance of Notepad to print the results after waiting for 1 second'
x.Run "%windir%\notepad"
wscript.sleep 1000
x.sendkeys encode(mySecret)'this function encodes the text by advancing each character 3 letters'
function encode(s)
For i = 1 To Len(s)
newtxt = Mid(s, i, 1)
newtxt = Chr(Asc(newtxt)+3)
coded = coded & newtxt
Next
encode = coded
End Function
-----------------------------------------------
The codes for the decryption program are:
'sIMPLE VB DECRYPTION PROGRAM'
'create a dialogue box that asks for the text to encode
set x = WScript.CreateObject("WScript.Shell")
mySecret = inputbox("Enter text to be decoded")
'Reverse the submitted text'
mySecret = StrReverse(mySecret)
'Open up an instance of Notepad to print the results after waiting for 1 second
x.Run "%windir%\notepad"
wscript.sleep 1000
x.sendkeys encode(mySecret)
'this function encodes the text by advancing each character 3 letters
function encode(s)
For i = 1 To Len(s)
newtxt = Mid(s, i, 1)
newtxt = Chr(Asc(newtxt)-3)
coded = coded & newtxt
Next
encode = coded
End Function
-----------------------------------------
Thanks you for watching, I hope you enjoyed, and please subscribe, comment, and rate!!!!
-----------------------------------------
Don't forget the like on Facebook:
  / hmpall  
Don't forget the follow on Twitter:
  / hmpall  
Don't forget to visit:
http://www.hmpall.com

Комментарии

Информация по комментариям в разработке

Похожие видео

  • О нас
  • Контакты
  • Отказ от ответственности - Disclaimer
  • Условия использования сайта - TOS
  • Политика конфиденциальности

video2dn Copyright © 2023 - 2025

Контакты для правообладателей [email protected]