Branch: refs/heads/newcrypto
Home: https://github.com/fabbione/kronosnet
Commit: 4f5ef35b6978f320f031cae2c3dc5d0adbdeaf17
https://github.com/fabbione/kronosnet/commit/4f5ef35b6978f320f031cae2c3dc5d…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2016-11-12 (Sat, 12 Nov 2016)
Changed paths:
M configure.ac
M poc-code/Makefile.am
A poc-code/iov-hash/.gitignore
A poc-code/iov-hash/Makefile.am
A poc-code/iov-hash/main.c
Log Message:
-----------
[poc] add io-hashing PoC
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Branch: refs/heads/newcrypto
Home: https://github.com/fabbione/kronosnet
Commit: 830c1ed34a932e57c5a6670eae6881ca4a48a046
https://github.com/fabbione/kronosnet/commit/830c1ed34a932e57c5a6670eae6881…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2016-11-07 (Mon, 07 Nov 2016)
Changed paths:
M libknet/crypto.c
M libknet/crypto.h
M libknet/nsscrypto.c
M libknet/nsscrypto.h
M libknet/tests/fun_crypto_benchmark.c
Log Message:
-----------
[crypto] introduce (nss)crypto_encrypt_and_signv
and move crypto_encrypt_and_sign to use the v version.
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Branch: refs/heads/master
Home: https://github.com/fabbione/kronosnet
Commit: 9954dfb317cf6666fb57ef07a3596129b0e91510
https://github.com/fabbione/kronosnet/commit/9954dfb317cf6666fb57ef07a35961…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2016-11-06 (Sun, 06 Nov 2016)
Changed paths:
M libknet/tests/Makefile.am
A libknet/tests/int_crypto.c
Log Message:
-----------
[tests] add internal crypto basic test
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Branch: refs/heads/master
Home: https://github.com/fabbione/kronosnet
Commit: 7368d54c93464b6728214d63f367d13822d7af06
https://github.com/fabbione/kronosnet/commit/7368d54c93464b6728214d63f367d1…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2016-11-06 (Sun, 06 Nov 2016)
Changed paths:
M Makefile.am
M configure.ac
A poc-code/Makefile.am
M poc-code/access-list/Makefile.am
M poc-code/iov-enc/Makefile.am
Log Message:
-----------
Integrate it all with build
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Branch: refs/heads/master
Home: https://github.com/fabbione/kronosnet
Commit: 712dee586980046b06bb800ccd9b241fa721ee5b
https://github.com/fabbione/kronosnet/commit/712dee586980046b06bb800ccd9b24…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2016-11-06 (Sun, 06 Nov 2016)
Changed paths:
M configure.ac
A poc-code/access-list/.gitignore
M poc-code/access-list/Makefile.am
M poc-code/access-list/test_ipcheck.c
A poc-code/iov-enc/.gitignore
M poc-code/iov-enc/Makefile.am
Log Message:
-----------
Simplify build of poc-code
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Branch: refs/heads/master
Home: https://github.com/fabbione/kronosnet
Commit: 7e39d4745f3ec6d978a76ac73257fdd7ca25a164
https://github.com/fabbione/kronosnet/commit/7e39d4745f3ec6d978a76ac73257fd…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2016-11-06 (Sun, 06 Nov 2016)
Changed paths:
M poc-code/iov-enc/main.c
Log Message:
-----------
Simplify even further. EncContext tracks the location of the buffer
and doesn't care about tmp_len
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Branch: refs/heads/master
Home: https://github.com/fabbione/kronosnet
Commit: c299b2a38556b2e5784971c68ae1714f37d669de
https://github.com/fabbione/kronosnet/commit/c299b2a38556b2e5784971c68ae171…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2016-11-05 (Sat, 05 Nov 2016)
Changed paths:
A poc-code/iov-enc/Makefile.am
A poc-code/iov-enc/main.c
Log Message:
-----------
Add libnss iovec PoC
this is a small modified version of the code example available here:
https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/nss_sample_co…
to show that it is possible to encrypt from multiple src buffers
into a final buffer.
this approach will allow us to remove a lot of memcpy around the
recv/send thread and replace them with iovec mapping all across.
Possible side effects:
- less memory consumption (mapping vs allocating)
- more complex code / crypto (internal) API changes