368 Commits

Author SHA1 Message Date
b83c466876 added special characters note to readme
I will maybe add this feature, but idk
2022-05-27 18:53:28 +02:00
563791e53b workflow typo fixes
I can't type preparation
2022-05-27 18:45:05 +02:00
2d5e18809a changed VERSIONS_NAME's path to /tmp
it was pretty annoying
2022-05-27 18:28:55 +02:00
751b557598 added spaces to TEST_TEXT 2022-05-27 18:24:04 +02:00
92ad02dcd2 why2-app TEXT_TO_ENCRYPT typo fix 2022-05-27 18:01:13 +02:00
1406de2f37 added comment to previous commit 2022-05-27 17:26:20 +02:00
b540d5f36c created getter for no inputFlags 2022-05-27 17:25:02 +02:00
54b137165a changed version to v4.0.1 2022-05-26 19:51:21 +02:00
252bdef502 added note for unknown version 2022-05-26 19:50:58 +02:00
fcb0d7cbfb changed TEST_TEXT to something *intelligent*
'Pepa stinks' is good, but this will test WHY2 better (at least I think :D)
2022-05-26 19:43:48 +02:00
0437279b41 doubled buffer size for why2-test
next commit will change TEST_TEXT, so this is necessary
2022-05-26 19:42:33 +02:00
e94c273bd9 probably fixed deallocateOutput segfault
I thought the key returned as outputFlags (decrypter) was pointer to completely new address, but it often tried to deallocate unallocated key
2022-05-26 19:35:22 +02:00
903bcc63bf April 12, 2022 2022-05-26 19:28:13 +02:00
fd05727b10 keyNew typo fix
whoops, I replaced keyNew for key (which doesn't have any content at this stage)
2022-05-26 19:11:52 +02:00
268f7e3db2 added all packages to unsupported distro note 2022-05-26 18:57:42 +02:00
d352359ae2 added make package to configure script 2022-05-26 18:55:56 +02:00
c7dd464afe re-added apt update to workflows
I think it could cause some trouble w configuration
2022-05-26 18:55:21 +02:00
e16de23f57 simplified why2-app 2022-05-26 18:52:24 +02:00
073cdd2468 moved checking for valid key to misc
I'm trying to make code variable as much as possible
2022-05-26 18:40:46 +02:00
39e174a874 removed unused memory size 2022-05-26 18:40:46 +02:00
0fed6e7f0c Reverted null character "fixes"
This reverts commit 62c21eb37f9bdc9570c53674daf2715373cb80f5.
2022-05-26 18:40:46 +02:00
b84b8aa7cc added/fixed null characters 2022-05-26 18:40:46 +02:00
08c4a8eebe changed version to v4.0 2022-05-26 18:40:46 +02:00
c3c8ddb82e changed KEY_LENGTH to 100 in why2-test
the previous similar commit had only 75 chars, cuz the NULL character wasn't implemented xd

5093d2395f
2022-05-26 18:40:37 +02:00
5093d2395f added NULL character to generated key 2022-05-25 17:58:19 +02:00
35959a4393 changed textKeyChain generation > fixed possible buffer overflow 2022-05-25 17:51:57 +02:00
4534ec7521 changed KEY_LENGTH to 75 in why2-test 2022-05-25 17:47:46 +02:00
1303d3d220 added missing comments to why2-test 2022-05-25 17:45:07 +02:00
a517ec48dd removed deprecated flags, cuz I forgot to do it
maan
2022-05-25 17:42:49 +02:00
a8c3c5f28a added missing new line to why2-test 2022-05-25 17:39:57 +02:00
ba6939e64b replaced integers in inputFlags with UC 2022-05-25 17:34:22 +02:00
5d572662eb removed the (probably :D) unused text in typedefs
i have no idea, again
2022-05-25 17:27:38 +02:00
cda356c9d8 trying to remove workflow server update
it's causing some problems and it's kinda annoying how long it takes [it is possible I will revert this]
2022-05-25 17:24:41 +02:00
12557a6a94 removed new FUCKING trailing spaces 2022-05-25 17:20:10 +02:00
cffdd22b85 found some better way to rewind FILE in version checking
just removing that TODO
2022-05-25 17:18:39 +02:00
d30e8db886 added following redirect to why2-project workflow
I forgor
2022-05-24 19:12:46 +02:00
375aeccc1c added more output to test failure 2022-05-24 19:10:26 +02:00
314846a45e whoops, I missed one
foq
2022-05-24 19:01:31 +02:00
6282bc6aec removed only char sizeof
'cause char length is 1 lulw
2022-05-24 18:56:32 +02:00
031bdd0fdb replaced wget for curl in why2-project
because why not
2022-05-24 18:55:13 +02:00
ef4f9f5084 reverted the sizeof removing
I have no idea
2022-05-24 18:45:44 +02:00
d63c97614f moved fileBuffer deallocation to beggining of encrypter
it for some reason threw segfault
2022-05-24 18:21:33 +02:00
cfb55cd493 removed stdlib from why2-app
idk why it was there
2022-05-24 18:17:49 +02:00
e4a2986c12 made test failure memory safe 2022-05-24 18:09:35 +02:00
74931327c0 changed test's buffer size to 64
this shouldn't be problem (I think)
2022-05-24 18:07:46 +02:00
70a2040bab removed unused sizeof
fixing my recent mistakes
2022-05-24 18:03:08 +02:00
cea8f06ad8 changed maximal line length (versions.json) to 32
I think 32 is enough/fine
2022-05-24 17:54:25 +02:00
a1503d6b74 changed buffer for versions.json to correct size
it was set to 256 and guess what? the current versions.json is EXACTLY 256 characters long lmaoo
2022-05-24 17:51:19 +02:00
7f90c74124 trying to add correct memory allocation
it's possible I'll revert this lol
2022-05-23 18:02:59 +02:00
9a2663c7a4 replaced malloc in loop with realloc
when I was coding first version of WHY2 I didn't know there's something like it lulw
2022-05-22 15:27:37 +02:00