Skip to content

Commit

Permalink
Don't upload .DS_Store.
Browse files Browse the repository at this point in the history
  • Loading branch information
wputnam committed May 23, 2018
1 parent 54121ac commit 3a0dd69
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -26,6 +26,9 @@
*.a
*.lib

# DS_Store
*.DS_Store

# Executables
*.exe
*.out
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -14,7 +14,7 @@ Here's a quick rundown of the main features:
- Application and session data are encrypted using AES-256 block ciphers
- Prevents attacks such as fuzzing, message injection, and man-in-the-middle (MitM) from modifying network connections

To learn more about the details, read the [master's thesis](MT.pdf) for the project.
To learn more about the details, please consult the [project documentation](http://bettercan.readthedocs.io/en/latest/).

## Getting Started

Expand Down
1 change: 1 addition & 0 deletions docs/source/functions.rst
Expand Up @@ -45,6 +45,7 @@ Other files
* *CANmult.sh* - establishes two virtual CAN bus network interfaces for MitM testing
* *keyGen.cpp* - creates a symmetric 256-bit AES to be pre-shared among all devices on the network
* *inputbuffer.cpp* - the data-link layer interface that receives messages on the CAN bus that match its assigned ID, and runs parallel to the TCB module
* *Makefile* - builds the source code and generates the executables required to run BetterCAN
* *MCUin.cpp* - part of the application layer for the MCU, where messages are simply read in after being parsed
* *MCUout.cpp* - part of the application layer for the MCU, where the transport and session layer parsers are established
* *outputbuffer.cpp* - the data-link layer interface that sends messages on the CAN bus to a specific destination ID, which is only ran when there is a message to send
Expand Down

0 comments on commit 3a0dd69

Please sign in to comment.