I want to use Salsa20 as a part of my assignment. The implementation is available at everard/Salsa20 GitHub. The problem is I am new to git and programming.
The document says add Salsa20.h
and Salsa20.inl
, so does this mean that I have to add these files in the header of my *.cpp
file or is there any other way that I could do that?
I tried to add Salsa20.h
and Salsa20.inl
in the header of my program (basically just copied those files to my current directory and tried to compile but ended up with errors). There is also main.cpp
in the source folder of the project, so should I create main.h and add it as headers to my program. I honestly don't know what to do.
I am familiar with *.h
files but not with *.inl
files, I tried to read the questions on stackoverflow but it went over my head. I would also appreciate if someone could help me with that too. Thanks in advance.