Search found 779 matches

by Saki
Mon Jun 28, 2021 12:10 pm
Forum: Coding Questions
Topic: Readstring. Is it an error or just an empty string?
Replies: 13
Views: 1850

Re: Readstring. Is it an error or just an empty string?

Hi @Barry
Ah, if I understand correctly, then he must use the flag
#PB_File_IgnoreEOL.

Code: Select all

; As sample so :

string$=ReadString(file, #PB_File_IgnoreEOL|#PB_UTF8)
by Saki
Mon Jun 28, 2021 11:22 am
Forum: Coding Questions
Topic: Readstring. Is it an error or just an empty string?
Replies: 13
Views: 1850

Re: Readstring. Is it an error or just an empty string?

Code: Select all

If FileSize(path$)<1 : Debug "Empty or not readable as File" : Endif

Code: Select all

If not LOF(file) : Debug "Empty" : endif
by Saki
Mon Jun 28, 2021 8:31 am
Forum: Tricks 'n' Tips
Topic: Image and Texture crypter - simplest use + AES
Replies: 27
Views: 5722

Re: Image and Texture crypter - simplest use + AES

Hi @Cyllceaux. I am glad that you like it. You can also take the variant with AES. If you look at this, you will see that you can also insert this small part into your code, just like the RandomSeed. The encoders and decoders differ only by a plus or a minus sign. You have to take care that you don'...
by Saki
Sun Jun 27, 2021 7:55 pm
Forum: 3D Programming
Topic: how can i protect 3D textures and models ?
Replies: 19
Views: 9366

Re: how can i protect 3D textures and models ?

@Mijikai Thanks for your experience with encryption. Anyone who programs malware will also be able to encrypt a file. My crypting tools are not made for these people and I don't appreciate it when someone suggests, based of pure bashing, you can or should do this out with me tools. That is lowest dr...
by Saki
Sun Jun 27, 2021 7:02 pm
Forum: Tricks 'n' Tips
Topic: Image and Texture crypter - simplest use + AES
Replies: 27
Views: 5722

Re: Image and Texture crypter - simplest use + AES

Diffusor with AES added. Hi Kwai, thank you for your test and that you like it. It's all OK, pewing venom is just bashing to try to make things bad across the board. The diffuser is intended to damage the images only to the extent that no one can steal them to use them themselves. They are then wor...
by Saki
Sun Jun 27, 2021 11:27 am
Forum: Tricks 'n' Tips
Topic: Image and Texture crypter - simplest use + AES
Replies: 27
Views: 5722

Re: Image and Texture crypter - simplest use + AES

Image Diffusor added. @Keya People also often look for simple solutions. It's nice to be able to say, look, here's something for you, try this. Whether the NSA can crack it or a horde of crackers gets their hands on it is usually irrelevant. All games have been cracked so far. But think about it, th...
by Saki
Sun Jun 27, 2021 10:27 am
Forum: 3D Programming
Topic: how can i protect 3D textures and models ?
Replies: 19
Views: 9366

Re: how can i protect 3D textures and models ?

Hi, unfortunately I do not know, but surely others here in the forum know.

I have a other code added, a Diffusor, that shows how to make worthless the images.
You can still see the images but they are worthless for others.
by Saki
Sat Jun 26, 2021 11:35 pm
Forum: Off Topic
Topic: John McAfee's death
Replies: 26
Views: 12472

Re: John McAfee's death

I'm not talking about Epstein either.
May their souls find peace.
by Saki
Sat Jun 26, 2021 10:54 pm
Forum: Tricks 'n' Tips
Topic: Image and Texture crypter - simplest use + AES
Replies: 27
Views: 5722

Re: Image and Texture crypter - simplest use + AES

Yes and, "Caesar cyper" is also an encryption !
But what has that to do with the code, nothing !
This is also really not difficult to recognize.
by Saki
Sat Jun 26, 2021 10:31 pm
Forum: Tricks 'n' Tips
Topic: Image and Texture crypter - simplest use + AES
Replies: 27
Views: 5722

Re: Image and Texture crypter - simplest use + AES

It is not a Caesar cypher. :wink:
by Saki
Sat Jun 26, 2021 10:25 pm
Forum: Tricks 'n' Tips
Topic: Image and Texture crypter - simplest use + AES
Replies: 27
Views: 5722

Re: Image and Texture crypter - simplest use + AES

32 bit is wrong, its only on x86.

As I said, as long as you have to keep a password in the code, it doesn't matter if you use the variant with or without AES.

9 out of 10 users here will probably be satisfied with the variant without AES.
by Saki
Sat Jun 26, 2021 10:16 pm
Forum: Tricks 'n' Tips
Topic: Image and Texture crypter - simplest use + AES
Replies: 27
Views: 5722

Re: Image and Texture crypter - simplest use + AES

But only if you know exactly what you have in front of you.
You must also know the seed and that it does not work with XOr.
That's a lot of details.
It requires very profound knowledge to start there and rebuild everything.
I don't think it's worth it for a few images.
by Saki
Sat Jun 26, 2021 10:07 pm
Forum: Tricks 'n' Tips
Topic: Image and Texture crypter - simplest use + AES
Replies: 27
Views: 5722

Re: Image and Texture crypter - simplest use + AES

Caesar encryption is also an encryption. It is usually sufficient to hide the images, as it is also written in the code above. Nevertheless, it is not at all easy to override this. And I would probably use the variant without AES, because it doesn't make any difference if you don't add the password ...
by Saki
Sat Jun 26, 2021 9:58 pm
Forum: Off Topic
Topic: John McAfee's death
Replies: 26
Views: 12472

Re: John McAfee's death

Hmm, I don't think he had the importance and especially the dangerous knowledge of Epstein.
by Saki
Sat Jun 26, 2021 9:54 pm
Forum: Tricks 'n' Tips
Topic: Image and Texture crypter - simplest use + AES
Replies: 27
Views: 5722

Re: Image and Texture crypter - simplest use + AES

Keya wrote: Sat Jun 26, 2021 9:48 pm
Saki wrote: Sat Jun 26, 2021 9:44 pm Hi @Keya
These crypters are based on deterministic random generators.
CryptRandom() is not a deterministic random generator, this works not. :wink:
Exactly my point.
And further, how are you going to break a deterministic AES based random generator ?

Best Regards Saki