Skip to main content

Posts

Showing posts with the label Visual Basic

An open source strong password generator program for steemians [repost]

In my previous post  https://steemit.com/programming/@royalmacro/a-free-open-source-data-encryption-program-for-steemit-users  I share a data encrypton tool with source code, now, today here I share another program, a strong password generator with source code. This program will generate strong, hard-to-guess passwords. I’ll do it by hashing together “domain name”, “login/user id” & “a secure master key”. If you use the same secure master key for every password generations then you do not need to write down or, memorize your generated passwords. When you need your password then repeat the same procedure to re-generate it. If your “domain name”, “login/user id” & “a secure master key” are not different then you will generate the same password. If you use only one secure master key then you have to only memorize your master key, not the passwords. Lets try it ! Step by Step Development : Open a new project in Visual Basic 8. Select “Standard EXE”. ...

A free open source data encryption program for steemit users [repost]

A free open source data encryption program for steemit users Hello, everyone this is my first software sharing for Steemit Community. I developed a software (programmed in Visual Basic 8) for encrypting any text data. It’ll play a vital role on Steemit Community, because, on Steemit Platform we need a very long passphrase to be saved. It’s impossible to memorize this passphrase. And, it’s also very dangerous to write down this passphrase in the notepad. There are too many free password keepers & encryption programs, but, maximum are not open-source. My main objective is to provide such type open-source program. I use  AES Rijndael Block Cipher Encryption Algorithm  to encrypt text data. Step by Step Development : Open a new project in Visual Basic 8. Select “Standard EXE”.   Create two text boxes & two command buttons on the form. Text1 textbox, Text2 textbox, Command1 commandbutton & Command2 commandbutton.    Chan...

A free open source data encryption program for steemit users [repost]

A free open source data encryption program for steemit users Hello, everyone this is my first software sharing for Steemit Community. I developed a software (programmed in Visual Basic 8) for encrypting any text data. It’ll play a vital role on Steemit Community, because, on Steemit Platform we need a very long passphrase to be saved. It’s impossible to memorize this passphrase. And, it’s also very dangerous to write down this passphrase in the notepad. There are too many free password keepers & encryption programs, but, maximum are not open-source. My main objective is to provide such type open-source program. I use  AES Rijndael Block Cipher Encryption Algorithm  to encrypt text data. Step by Step Development : Open a new project in Visual Basic 8. Select “Standard EXE”.   Create two text boxes & two command buttons on the form. Text1 textbox, Text2 textbox, Command1 commandbutton & Command2 commandbutton.    Chang...
Back to Top