Merge pull request #153 from libtom/fix/54-part1
part of feature/doc changes from #54
This commit is contained in:
commit
4cdc304e37
@ -1,7 +1,7 @@
|
||||
libtomcrypt
|
||||
==========
|
||||
|
||||
See doc/crypt.pdf for a detailed documentation
|
||||
See `doc/crypt.pdf` for a detailed documentation
|
||||
|
||||
Project Status
|
||||
--------------
|
||||
@ -13,6 +13,10 @@ Submitting patches
|
||||
|
||||
Please branch off from develop if you want to submit a patch.
|
||||
|
||||
Patch integration will be faster if tests and documentation are included.
|
||||
|
||||
Please update the makefiles in a separate commit. To update them simply run the `updatemakes.sh` script.
|
||||
|
||||
Branches
|
||||
--------
|
||||
|
||||
|
10
makefile
10
makefile
@ -357,10 +357,10 @@ docs: crypt.tex
|
||||
rm -f doc/crypt.pdf $(LEFTOVERS)
|
||||
cp crypt.tex crypt.bak
|
||||
touch --reference=crypt.tex crypt.bak
|
||||
(echo "\\def\\fixedpdfdate{"; date +'D:%Y%m%d%H%M%S%:z' -d @$$(stat --format=%Y crypt.tex) | sed "s/:\([0-9][0-9]\)$$/'\1'}/g") > crypt-deterministic.tex
|
||||
echo "\\pdfinfo{" >> crypt-deterministic.tex
|
||||
echo "/CreationDate (\fixedpdfdate)" >> crypt-deterministic.tex
|
||||
echo "/ModDate (\fixedpdfdate) }" >> crypt-deterministic.tex
|
||||
(printf "%s" "\def\fixedpdfdate{"; date +'D:%Y%m%d%H%M%S%:z' -d @$$(stat --format=%Y crypt.tex) | sed "s/:\([0-9][0-9]\)$$/'\1'}/g") > crypt-deterministic.tex
|
||||
printf "%s\n" "\pdfinfo{" >> crypt-deterministic.tex
|
||||
printf "%s\n" " /CreationDate (\fixedpdfdate)" >> crypt-deterministic.tex
|
||||
printf "%s\n}\n" " /ModDate (\fixedpdfdate)" >> crypt-deterministic.tex
|
||||
cat crypt.tex >> crypt-deterministic.tex
|
||||
mv crypt-deterministic.tex crypt.tex
|
||||
touch --reference=crypt.bak crypt.tex
|
||||
@ -369,7 +369,7 @@ docs: crypt.tex
|
||||
latex crypt > /dev/null
|
||||
makeindex crypt.idx > /dev/null
|
||||
perl fixupind.pl
|
||||
pdflatex crypt
|
||||
pdflatex crypt > /dev/null
|
||||
sed -b -i 's,^/ID \[.*\]$$,/ID [<0> <0>],g' crypt.pdf
|
||||
mv -ivf crypt.pdf doc/crypt.pdf
|
||||
mv crypt.bak crypt.tex
|
||||
|
4
run.sh
4
run.sh
@ -13,7 +13,7 @@ else
|
||||
fi
|
||||
|
||||
rm -f testok.txt
|
||||
bash build.sh " $1" "$2 -Os" " $3 IGNORE_SPEED=1 LTC_SMALL=1" "$4" "$5"
|
||||
bash build.sh " $1" "$2 -Os" "$3 IGNORE_SPEED=1 LTC_SMALL=1" "$4" "$5"
|
||||
if [ -a testok.txt ] && [ -f testok.txt ]; then
|
||||
echo
|
||||
else
|
||||
@ -23,7 +23,7 @@ else
|
||||
fi
|
||||
|
||||
rm -f testok.txt
|
||||
bash build.sh " $1" " $2" " $3 " "$4" "$5"
|
||||
bash build.sh " $1" "$2" "$3" "$4" "$5"
|
||||
if [ -a testok.txt ] && [ -f testok.txt ]; then
|
||||
echo
|
||||
else
|
||||
|
@ -19,9 +19,9 @@
|
||||
|
||||
/**
|
||||
Perform PKCS #1 MGF1 (internal)
|
||||
@param hash_idx The index of the hash desired
|
||||
@param seed The seed for MGF1
|
||||
@param seedlen The length of the seed
|
||||
@param hash_idx The index of the hash desired
|
||||
@param mask [out] The destination
|
||||
@param masklen The length of the mask desired
|
||||
@return CRYPT_OK if successful
|
||||
|
Loading…
Reference in New Issue
Block a user