GeistHaus
log in · sign up
8 pages link to this URL
How using hyper in curl can help make the internet safer | Amazon Web Services

In February, Josh Aas from Internet Security Research Group, Daniel Stenberg from curl, and I (from hyper and Amazon Web Services) hosted a joint webinar to discuss memory safety and the internet, and how using hyper in curl can help make the internet safer. Because curl is open source and permissively licensed, it is found […]

2 inbound links article en Open Source Open SourceThought LeadershipRust
What is memory safety and why does it matter?

Memory safety is a property of some programming languages that prevents programmers from introducing certain types of bugs related to how memory is used. Since memory safety bugs are often security issues, memory safe languages are more secure than languages that are not memory safe. Memory safe languages include Rust, Go, C#, Java, Swift, Python, and JavaScript. Languages that are not memory safe include C, C++, and assembly. Types of Memory Safety Bugs To begin understanding memory safety bugs, we'll consider the example of an application that maintains to do lists for many users. We'll look at a couple of the most common types of memory safety errors that can occur in programs that are not memory safe.

7 inbound links article en docs
Memory safety in Rust - part 1

In this first part about memory safety in Rust we will understand the concept of memory safety and discuss various approaches used by programming languages to achieve it.

0 inbound links article en