Search found 10 matches

by franc
Fri Aug 09, 2024 5:01 pm
Forum: AES Crypt
Topic: Online decryption of AESCrypt-files
Replies: 3
Views: 29105

Re: Online decryption of AESCrypt-files

Oha! That is really good news! Very happy!
Thanks!
I thought you had stopped development of AES Crypt at all since long. But you are right, it just works :)
Nice!!!

I switched on my systems for encryption to AESCrypt this year, because there is multiple platform support. Previously I had AxCrypt ...
by franc
Sun Jul 21, 2024 7:37 am
Forum: AES Crypt
Topic: Online decryption of AESCrypt-files
Replies: 3
Views: 29105

Online decryption of AESCrypt-files

Hallo

I use AESCrypt since a short while on my Windows computer with W11. Works great and I can encrypt / decrypt on my Mac and Android too :)
But one thing I miss, is a way to decrypt online my files, if once I have no device with AESCrypt installed - or if the actual binaries from 2015 wont work ...
by franc
Tue Nov 21, 2023 5:20 pm
Forum: AES Crypt
Topic: Overwrite existing file - AES Crypt Error
Replies: 9
Views: 101100

Re: Overwrite existing file - AES Crypt Error

OK, done!
The crucial function is indeed that CreateFileW (fom Windows API) and the param dwCreationDisposition
I changed the code as this: In AESCryptWorkerThreads.cpp I changed in line 392 CREATE_NEW to CREATE_ALWAYS :

result_code = out_buffered_file.OpenFile(
out_file.c_str(),
true,
CREATE ...
by franc
Tue Nov 21, 2023 2:24 pm
Forum: AES Crypt
Topic: Overwrite existing file - AES Crypt Error
Replies: 9
Views: 101100

Re: Overwrite existing file - AES Crypt Error

OK, got it :)
I had to switch all projects to 2012 Tools (or 2010 Tools):

AESCrypt Property Pages.png

And I just deleted in some project file the rpcndr.lib and now I can compile it with VS2022 :)
Now lets see how I can handle the CREATE_ALWAYS instead of CREATE_NEW as dwCreationDisposition in ...
by franc
Tue Nov 21, 2023 10:59 am
Forum: AES Crypt
Topic: Overwrite existing file - AES Crypt Error
Replies: 9
Views: 101100

Re: Overwrite existing file - AES Crypt Error

OK, I installed Visual Studio 2010 C++ Express from Visual Studio Subscriptions and still I get an error about Setup.vdproj, as if even 2010 seems too new :)
2023-11-21_11-33-02.png
But I didnt install then 2008 Express, unsure if it would work anyway.

I tried to compile then (with VS 2010 or ...
by franc
Sun Nov 19, 2023 8:25 pm
Forum: AES Crypt
Topic: Overwrite existing file - AES Crypt Error
Replies: 9
Views: 101100

Re: Overwrite existing file - AES Crypt Error

Or, is there a How-To for compiling AESCrypt for Windows W11?
I found the source code but I read Visual Studio 2010, I have 2022, Build Tools does not fit etc.
If I could compile it by myself then I could create a Dialog for "Overwrite? Yes/No" or just hardcode overwriting (which I only need ...
by franc
Sun Nov 19, 2023 1:25 pm
Forum: AES Crypt
Topic: Overwrite existing file - AES Crypt Error
Replies: 9
Views: 101100

Re: Overwrite existing file - AES Crypt Error

Thanks again!
I stumbled on this question of mine again, still having that same issue.

I would love to have a CheckBox to accept overwrite on encrypt, e.g.:

The file exists, do you want to overwrite it?
Yes / No

At the moment I have to do it manually, but this is annoying with the totalcmd ...
by franc
Wed Mar 03, 2021 4:19 pm
Forum: AES Crypt
Topic: Overwrite existing file - AES Crypt Error
Replies: 9
Views: 101100

Overwrite existing file - AES Crypt Error

Hallo

I use AES Crypt on PC (W10) and Mac (10.11) for some sensible files I have in some subversion repo.
The textfiles are encrypted in this repo. e.g. passwords.txt.aes.

On PC I can use the context menu to decrypt them, but when I want to encrypt them again, I have to first delete the aes file ...
by franc
Tue Dec 08, 2020 9:21 am
Forum: AES Crypt
Topic: Right click encrypt-decrypt for Mac
Replies: 5
Views: 32091

Re: Right click encrypt-decrypt for Mac

paulej wrote: Mon Dec 07, 2020 11:59 pm Did you install @justafan's extension?
franc wrote: Fri Dec 04, 2020 10:29 am ...Then I installed your script with Automator like you described, seems successful, no error messages...
Yes, that is why I ask here :) :)
by franc
Fri Dec 04, 2020 10:29 am
Forum: AES Crypt
Topic: Right click encrypt-decrypt for Mac
Replies: 5
Views: 32091

Re: Right click encrypt-decrypt for Mac


...
If you have AESCRYPT installed in your machine, then what this script does is add an extra item to the "right click" menu that pops up when you click an item in the finder. If you scroll down you will see a menu choice (perhaps as a sub menu under services) to encrypt or decrypt the file. That ...