Browsing Tag
rust
144 posts
How to start a project in Rust
Rust is a programming language that is becoming more and more popular among developers. But what would be…
Certificate Parsing with `domain-recon`
What is Certificate Parsing? Certificate parsing is a way of conducting web hacking reconnaissance when an attacker is…
How Rust can help you write safer and more reliable code
Rust enforces memory safety Rust is designed to be a safe and concurrent language, and it has features…
Different test scopes in Rust
I’m still working on learning Rust. Beyond syntax, learning a language requires familiarizing oneself with its idioms and…
Multi-thread Processing in Rust
Most program we wrote is single threaded. Since most of the task is IO bound. It make sense…
Getting Started with Seaography
Seaography is a GraphQL framework for building GraphQL resolvers using SeaORM. It ships with a CLI tool that…
Why I’m Learning Rust
I keep asking myself: Why learn Rust when there are so many other languages I could learn? Why…
Bit Shifting
Hello guys and welcome to new post about Bit Shifting in low level programming . Bit Shifting Bit…
Learn Rust by implementing a SHA-1 hash cracker
Originally published on my blog: https://kerkour.com/learning-rust-sha1-hash-cracker The moment has come to get your hands dirty: let’s write your…
Learning Rust – Merkle Tree
Recently, in my spare time, I’ve started to learn Rust and as an exercise I’ve decided to implement…