Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pmuens/implementing-ssl
https://github.com/pmuens/implementing-ssl
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pmuens/implementing-ssl
- Owner: pmuens
- Created: 2023-09-15T09:36:16.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-22T07:16:41.000Z (about 1 year ago)
- Last Synced: 2023-09-22T17:55:49.158Z (about 1 year ago)
- Language: C
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Implementing SSL / TLS Using Cryptography and PKI
Code written while reading the book ["Implementing SSL / TLS Using Cryptography and PKI"](https://www.wiley.com/en-hk/Implementing+SSL+TLS+Using+Cryptography+and+PKI-p-9780470920411) by Joshua Davies.
## Setup
1. `git clone `
2. `asdf install`
3. `make` or `./run.sh `## Useful Commands
```sh
asdf install
direnv allow./run.sh
make []
c99 -o .c -lm
clang -Wall -lm -o .c
gcc -std=c99 -Wall -lm -o -Wall -lm -o .c
icc -std=c99 -Wall -lm -o -Wall -lm -o .cman printf
man 3 printf
```## Useful Resources
- [Learn X in Y Minutes - C](https://learnxinyminutes.com/docs/c)
- [University of Washington - Quick and Dirty Guide to C](https://courses.cs.washington.edu/courses/cse351/16wi/sections/1/Cheatsheet-c.pdf)
- [Cheatography - C Reference Cheat Sheet](https://cheatography.com/ashlyn-black/cheat-sheets/c-reference)