Re: file encryption

2019-03-24 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: file encryption @4, I am trying to get a program to store stats. I have a small thingy built, now I just want it's stats to be stored in such a way so that the user can't edit it.The second post was also helpful. Thank you. URL: https://forum.audiogames.net/post/421955/#p421955

Re: file encryption

2019-03-24 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: file encryption @4, I am trying to get a program to store stats. I have a small thingy built, now I just want it's stats to be stored in such a way so that the user can't edit it. URL: https://forum.audiogames.net/post/421955/#p421955 -- Audiogames-reflector mailing list

Re: file encryption

2019-03-24 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: file encryption @4, that's why I said that performing cryptographic ops locally is a wiser idea than sending data like that over the internet. The key will always be visible, no matter what you do; its looking at the key that's hard. So the key is transparent, hard to see, and making

Re: file encryption

2019-03-24 Thread AudioGames . net Forum — Developers room : Origine via Audiogames-reflector
Re: file encryption Yeah I wanted to talk about good practices in cryptography and how it works. I'm curious, what do you want to achieve with cryptography or what do you want to prevent with it in your particular case, OP?@Ethan, doing encryption / decryption remotely would indeed secure

Re: file encryption

2019-03-24 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: file encryption @Origine, very good post on cryptography. 'd recommend GCM mode for AES encryption, IMO. (You could also use ChaCha20+Poly1305, which is AES in GCM mode without all the hardware acceleration and CPU-specific instructions and possible fallbacks to slower software

Re: file encryption

2019-03-24 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: file encryption @Origine, very good post on cryptography. 'd recommend GCM mode for AES encryption, IMO. (You could also use ChaCha20+Poly1305, which is AES in GCM mode without all the hardware acceleration and CPU-specific instructions and possible fallbacks to slower software

Re: file encryption

2019-03-24 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: file encryption @Origine, very good post on cryptography. 'd recommend GCM mode for AES encryption, IMO. (You could also use ChaCha20+Poly1305, which is AES in GCM mode without all the hardware acceleration and CPU-specific instructions and possible fallbacks to slower software

Re: file encryption

2019-03-23 Thread AudioGames . net Forum — Developers room : Origine via Audiogames-reflector
Re: file encryption Do you have to build an encryptor on your own? No, obviously. Even people with very good knowledge in security will make a flawed encryptor.Here is a link to a guide for encryption in python. It doesn't explain how it works, just how to do it. pycrypto

file encryption

2019-03-23 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
file encryption So obviously I'm missing something here.pickle is used for seriolization, but it's incredibly easy to revirce. All you have to do is open my file and try multiple types of variables till you find one that works and you've got what I saved.Pycrypto gives me an error that my

file encryption

2019-03-23 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
file encryption So obviously I'm missing something here.pickle is used for seriolization, but it's incredibly easy to revirce. All you have to do is open my file and try multiple types of variables till you find one that works and you've got what I saved.Pycrypto gives me an error that my

Re: Problem with file encryption in bgt

2015-08-10 Thread AudioGames . net Forum — Developers room : burak via Audiogames-reflector
Re: Problem with file encryption in bgt Hi, it doesnt encrpyt at all not a compilation error. URL: http://forum.audiogames.net/viewtopic.php?pid=227388#p227388 ___ Audiogames-reflector mailing list Audiogames-reflector@sabahattin

Re: Problem with file encryption in bgt

2015-08-10 Thread AudioGames . net Forum — Developers room : samtupy1 via Audiogames-reflector
Re: Problem with file encryption in bgt file_encrypt(data.dat, data1.dat, key);file_copy(data1.dat, data.dat, true);file_delete(data1.dat);Thats how youd do it with data.dat, or you could make data1.dat be unencrypted saving you from copying an extra file. But your problem

Re: Problem with file encryption in bgt

2015-08-10 Thread AudioGames . net Forum — Developers room : severestormsteve1 via Audiogames-reflector
Re: Problem with file encryption in bgt Burak, could you give some details?what happens when the function is called? does it spawn a compiler error? Or does the file simply not encrypt? URL: http://forum.audiogames.net/viewtopic.php?pid=227386#p227386

Problem with file encryption in bgt

2015-08-08 Thread AudioGames . net Forum — Developers room : burak via Audiogames-reflector
Problem with file encryption in bgt Hi,I do it like this:file_encrypt(data.dat,data.dat,data); But it doesnt work for some reason. URL: http://forum.audiogames.net/viewtopic.php?pid=227118#p227118 ___ Audiogames-reflector mailing list