C++ :: Passwords Must Be At Least 7 Characters Long
Dec 4, 2013
I've written a code that request for a password and its suppose to look like this.
Sample Output (inputs in bold)
Please enter a password: pass6
Passwords must be at least 7 characters long
Please enter a password: TarrantNW
Passwords must include a digit or dollar sign (0-9, $)
Please enter a password: Tccd-03
But when I run the program it stops at "Passwords must be at least 7 characters long" and the box closes and where I should put the loop=
#include <iostream>
#include <cstring>
#include <cctype>
using namespace std;
const int SIZE = 7;
char password[SIZE + 1];
[code]....
View 3 Replies
Apr 3, 2015
I have an application which needs to connect to a database. It runs in the background so there is no user input. I therefore need to store the connection string. I want to encrypt the connection details and then store the encrypted information. My thinking is I would read the encrypted details, from wherever I store them, unencrypt them and then connect to my database.
I've done a bit of reading on this and the SHA1CryptoServiceProvider method seems like an option but it appears that this cannot be unencrypted.
So how can I use this encrypted information?
Or is there another method?
View 1 Replies
View Related
Apr 1, 2015
I have a long long int k=0x0000888804eaad0e
And i need the reverse of this (nibble wise) in other long long int variable.
That is i want the result to be = q=0x0000e0daae408888;
Or the result also can be like this = q=0xe0daae4088880000;
How to accomplish the above?
View 4 Replies
View Related
Mar 20, 2014
so my question is i want to print characters,no string just an array of characters,i do this but it s not working,maybe i have to put the '' at the end?
Code:
int main() {
int i;
char ch[5];
for(i = 0; i < 5; i++) {
scanf("%c",&ch[i]);
[Code]...
View 6 Replies
View Related
Jul 6, 2014
Im supposed to find the common characters between two string characters, assuming that the user wont input duplicate letters like ddog. When I run my code I get an output of a question mark upside down. Here is my code with comments on what each part is supposed to do
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(){
char str1[20], str2[20],remp = '