Categories > Coding > C++ >

[RELEASE] BEST PASSWORD GENERATOR

Posts: 4

Threads: 1

Joined: Nov, 2022

Reputation: 4

Posted

Hello guys I have written a very good password generator in C++

#include <iostream>

int main()
{
	std::string sequence{ "0123456789!@#$%^&*abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" };
	std::string password{};

	std::size_t length = sequence.size();

	for (int i = 0; i < 16; i++)
		password += sequence[rand() % length];

	std::cout << "Your password is: " << password << '\n';
	std::cin.get();

	return EXIT_SUCCESS;
}
  • 0

Alternate

stop take my rice

vip

Posts: 712

Threads: 113

Joined: Mar, 2022

Reputation: 40

Replied

This community is about to turn into a password manager company

  • 0

we are dead

Posts: 0

Threads: 0

Joined: ?

Reputation:

Replied

Nice! Good work.

  • 0

Posts: 2014

Threads: 198

Joined: Apr, 2021

Reputation: 16

Replied

Didn't someone post something like this before?

  • 0

Random quote here...

Posts: 662

Threads: 65

Joined: Oct, 2022

Reputation: 30

Replied

@Alternate

Your right lol

  • 0

Try the cheat launcher verve today ⬇

https://i.imgur.com/QdS8sQ5.png

Join Neuron Discord Server - https://discord.gg/harAKHv32K

Posts: 0

Threads: 0

Joined: ?

Reputation:

Replied

This is entirely skidded from Atari XD's password gen. Next time make your own and I also suggest you delete this post

  • 0

Posts: 339

Threads: 0

Joined: Apr, 2022

Reputation: 33

Replied

  • 0

https://media.discordapp.net/attachments/678822153679929365/1218268087913283735/IMG_3660.gif?ex=66104612&is=65fdd112&hm=652e0aaf827c2ac7ae2d3e879d177c2bc7d7b1e9777744b08c045e9577a37867&

Posts: 4

Threads: 1

Joined: Nov, 2022

Reputation: 4

Replied

@75975 No it's not

  • 0

marcus__

S.K.I.D

vip

Posts: 444

Threads: 23

Joined: Nov, 2022

Reputation: 29

Replied

at least no using namespace std

  • 0

!!!!!marcus__!!!!!#8611

https://cdn.discordapp.com/attachments/1066053366758780978/1078052772567597127/image.png

Jisll

UI Maker

Posts: 29

Threads: 0

Joined: Feb, 2021

Reputation: 5

Replied

Well, it's not the best one. If you look at the code, it's a flat 5/10.

  • 0

https://cdn.discordapp.com/attachments/927291995947413515/1092728981884780594/jisll.png

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )