Password

How to Create a Local Password Lock in Visual Basic

Submitted by GeePee on
Introduction: Welcome to my tutorial on how to create a Local Password Lock in Visual Basic. The fact that it's local just means that the password is hardcoded in to the program and can not be changed without editing the source code of the program. Steps of Creation: Step 1: First we want to create a program with; textbox1 - contain password, label1 - to indicate to the user where to input the password, button1 - to check the password. Step 2: Next we want to create a couple of variables.

JPasswordField Component in Java

Submitted by donbermoy on
This is a tutorial in which we will going to create a program that has the JPasswordField Component using Java. The JPasswordField provides text fields for password entry and it does not show the characters that the user types. It will only display "*" for the password character. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of jPasswordFieldComponent.java. 2. Import the javax.swing.* package so that we can access the JFrame, JLabel, JPasswordField, and Box class.

How to set your TextBox to Show and Hide Password in the User Registration Form.

Submitted by janobe on
In this turtorial, I will teach you how to set your Textbox to "show" and "hide" Password in the User Rgistration Form by using Visual Basic 2008. This will help you determined the password that you have input in the Textbox when registering in the User Registration Form. So let’s begin: Open the Visual Basic 2008 and create a new Windows Form Application.

How to hava a Complex Password in C#

Submitted by donbermoy on
Today in C#, we will create a program that can determine if the inputted password is complex or not. Strong passwords meet a number of requirements for complexity - including length and character categories - that make passwords more difficult for attackers to determine. Establishing strong password policies for your organization can help prevent attackers from impersonating users and can thereby help prevent the loss, exposure, or corruption of sensitive information. Now, let's start this tutorial! 1.

Password Generator in VB.NET

Submitted by donbermoy on
In this article, we will create a program that can generate a random password when we pressed the button. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, add only one Button named Button1 and labeled it as "Generate Password".

VB.NET Password Complexity

Submitted by donbermoy on
Strong passwords meet a number of requirements for complexity - including length and character categories - that make passwords more difficult for attackers to determine. Establishing strong password policies for your organization can help prevent attackers from impersonating users and can thereby help prevent the loss, exposure, or corruption of sensitive information. In this tutorial, we will create a program that can determine if the inputted password is complex or not :) Now, let's start this tutorial! 1.

PHP Security (Form, Password Encryption, Fake Options)

Submitted by Yorkiebar on
Introduction: This tutorial will cover adding security in to your forms with PHP/HTML. Pre-creation: I am going to be using my login form as an example for this page, you can find my tutorial on a login form here; Login Form Tutorial. What security flaws are there? Whenever a user enters data in to your web forms the data gets processed as it is, and as such, needs the creator to add in security checks.