TLINDEN
65d039501d
added option -X
2015-05-30 11:11:20 +02:00
TLINDEN
d019ec4b9e
removed unused code (base85 and crc32)
2015-04-19 19:49:13 +02:00
TLINDEN
bfb9de1745
made oneliners of *VERSION makros, easier for py binding generator
2015-04-18 20:25:04 +02:00
TLINDEN
62281565d9
removed tarsnaps scrypt(), using libsodiums instead
2015-04-17 17:40:10 +02:00
TLINDEN
9737893e0a
fixed includes and function checks for scrypt
2015-04-17 14:14:38 +02:00
TLINDEN
9fae3ae869
fix of bug#6, typo in type name, take2
2015-03-27 19:01:56 +01:00
TLINDEN
c07eb761e1
fix of bug#6, typo in type name
2015-03-27 18:52:14 +01:00
TLINDEN
8535b50f94
added -M; removed CBC support, fixed asym-self-mode
2015-01-17 15:04:07 +01:00
TLINDEN
c0a4f7f887
bumped version to 0.2.5
2015-01-17 15:02:03 +01:00
TLINDEN
ea73c63c1c
rm unused func
2015-01-17 15:00:33 +01:00
TLINDEN
2e7479525f
turned crypto_secretbox nonces into counters, thereby implementing counter mode (CTR mode). we use variable size counters, max counter size is 184 bit, max implemented currently are 64 bit, multiply by 32kb and you get the maximum file size supported by pcp encryption
2015-01-16 00:13:02 +01:00
TLINDEN
3c30d8871b
using secure memory where applicable using sodium_malloc or sodium_mlock, where not
2015-01-13 13:07:32 +01:00
TLINDEN
f0494385e1
now using setrlimit() if present and if not in debug mode; applied changes for removed files
2015-01-13 13:06:20 +01:00
TLINDEN
54986fa6dc
migrated to libsodium _easy() crypto functions, thus getting rid of my hand made padding mess
2015-01-13 13:04:12 +01:00
TLINDEN
10f4ffa05a
fixed doxygen errors
2015-01-11 13:14:02 +01:00
git@daemon.de
d92d130dbd
added missing includes to installer
2015-01-05 12:56:43 +01:00
git@daemon.de
7b9817a9c0
added symlink so it can be installed as well
2015-01-05 12:56:26 +01:00
git@daemon.de
5e2ee0aef2
bump version to 0.2.4
2014-12-24 11:19:01 +01:00
TLINDEN
1e3f6c8bc2
yet another try to fix #4 , now tested on another linux system
2014-12-20 20:10:08 +01:00
TLINDEN
5f13d5d810
py continued
2014-12-14 18:06:45 +01:00
TLINDEN
7d76d41944
added configure flag --with-python-binding
2014-12-14 14:39:10 +01:00
TLINDEN
6f47b86f98
added pcpkey_setowner(), removed pcp[pub]key_exists() (unused currently)
2014-12-14 14:36:08 +01:00
TLINDEN
3a29223c9f
the normal autogen.sh run doesn't generate usage.h and other generated stuff on users machines. I pre-generate them here, where I know it works as I expect. This should fix issue#3, where on some linux machines generation of usage.h doesn't work which leads to a compiler error.
2014-09-29 11:24:02 +02:00
git@daemon.de
83912a1d16
disable running contests when cross compiling
2014-09-17 10:02:06 +02:00
git@daemon.de
298e6b1469
added anonymous sender key (-A) support
2014-08-11 15:45:47 +02:00
TLINDEN
e8f6a8635c
added pcphash_cleanpub() to free local pubkey hashes, which are not attached to any context
2014-08-07 21:32:48 +02:00
TLINDEN
9672785271
fixed memory leaks
2014-08-07 00:02:43 +02:00
git@daemon.de
5b4d04de5d
fixed memory leaks
2014-08-06 20:19:50 +02:00
git@daemon.de
a3f1bdaa2e
added buffer_fwd_offset() so I don't have to alloc mem to ignore some chunk of a buffer
2014-08-06 20:19:28 +02:00
TLINDEN
7542128486
fixed memory leaks
2014-08-06 01:23:32 +02:00
git@daemon.de
e033df7156
changed z85 padding (incompatible to previous pcp versions!):
...
now we padd with zeroes as usual but append 4 bytes to the
raw input, the last one indicates the pad count. It's always
present, even if no padding occurred (the pad blob will then
read 0000).
This fixes the issue of earlier versions where trailing zeroes
in the original input (between block boundaries) have been
removed. Since we now add the pad counter, we know how many
zeroes to remove. If the original chunk already ended with zeroes
they will left untouched.
Re-created all test keys/data to match the change.
Also, the pcp_z85_encode() function now haves another flag
doblock. If set to 1, the function does the 72 chars per line
block creation itself, otherwise it just returns the z85 string
without any newlines added. Required by pcpstream class.
2014-07-31 16:41:20 +02:00
TLINDEN
dc457b6eb9
updated
2014-05-06 11:51:54 +02:00
TLINDEN
c66c7ae15c
added own file type for crypt+sign, now signing the encrypted result, not the clear message.
...
using 64bit integers for time vars in key ex/im_ports
2014-05-06 11:50:28 +02:00
TLINDEN
9d2d02221b
added dump function
2014-05-06 11:49:59 +02:00
git@daemon.de
e11c295b42
fixed integer overflows when importing keys with invalid header sizes (or invalid headers, that is)
2014-05-05 11:59:54 +02:00
TLINDEN
da9891ff81
put previously global error handling and key hashes into ptx (pcp context) to make libpcp threadsafe.
2014-05-04 17:11:03 +02:00
TLINDEN
b6dadceda3
fixed utf8 bug, which sometimes lead to z85 handling of pure binary data
2014-03-17 19:15:04 +01:00
TLINDEN
322a135ee3
using Buffer instead of void for key2blob storage directly
2014-03-17 18:04:26 +01:00
TLINDEN
b3851f62e8
revert mode changes made by windows devel system (sic)
2014-03-17 17:20:29 +01:00
git@daemon.de
9e234600ca
converted the arc4* function wrappers to makros
2014-03-17 17:06:14 +01:00
git@daemon.de
2e337c3aeb
made the platform replacement functions extern
2014-03-17 15:19:56 +01:00
git@daemon.de
979cdd5c99
fixed unittest.pl - more portable
2014-03-15 19:02:08 +01:00
scip
a1cfe16c3c
(back) ported win32 32bit compatibility along with lots of fixes
2014-03-15 17:26:42 +01:00
git@daemon.de
080456219a
removed unused vars
2014-03-14 19:50:12 +01:00
TLINDEN
89b1dd770d
Merge branch 'master' of github.com:TLINDEN/pcp
2014-03-14 15:52:55 +01:00
TLINDEN
92c14cc621
added fuzz unittests, trying to import invalid binary keys using mangle.c by Ilja van Sprundel
2014-03-14 15:49:42 +01:00
git@daemon.de
770d464dd1
added inline stdnstr() implementation for systems where it doesnt exists (e.g. linux)
2014-03-10 16:58:48 +01:00
git@daemon.de
71faa88592
portability fixes (compiles under macosx 5.8 as well, probably on newer ones as well)
2014-03-08 19:27:52 +01:00
git@daemon.de
1852a8b7f9
removed -S and -P, replaced by -K, keymgmt determines key type automatically
2014-03-04 23:05:47 +01:00
TLINDEN
3d2cdb8b89
updated manpage and usage
2014-03-02 22:01:03 +01:00