Password generator using Rust #programming #rustlang

preview_player
Показать описание
How to make a quick and dirty password generator in Rust. This probably isn't cryptographically secure, but it is fun nevertheless.
Рекомендации по теме
Комментарии
Автор

JavaScript password generator is up! ⚛️

wadecodez
Автор

I think backtics, square brackets, greater than and smaller than are not allowed in most passwords. And some other symbols.

brski_dev
Автор

I think the Rand crate can generate random chars and strings directly. No need to go the manual way over u32. Also from should also work instead of from_u32

redcrafterlppa
Автор

I don't think thread_rng is cryptographically secure, but this is a nice demo for rust programming in general

jack_papel
Автор

how to get started using rust ? what is the keypoint/concepts that really needed to know when we are want to make rest api for high transaction process like retail industry?

genzlearnstocode
Автор

I’m a gopher, I’ve been seeing a lot of rust videos. This seems rather complicated lol

RandomShowerThoughts
Автор

Not that relevant ik but you can have slightly better performance with

xyz-vrtgs
Автор

ah rustum benim siralamaya hala girememis

OnlyMyisha
Автор

Can I do system level embedded system network programming in rust

ravichandel
Автор

You can get slightly less lines by doing something like by converting numbers via ASCII

let mut pass: String = String::new();
let mut rng: ThreadRng = thread_rng();
for _i in 0..11 {
String::push(&mut pass, rng.gen_range(33..123) as u8 as char);
}

dubstepaztec
Автор

como se llama esa cosa que pinta tu codigo de colores me gustaria ponerlo en mi visual studio

galletasdegoogle
Автор

you might want to remove the word "Rust" from the title

eudrino