Re: Can I decrypt data in Python if it was encrypted with BGT?

2019-03-22 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector


  


Re: Can I decrypt data in Python if it was encrypted with BGT?

@7, Rijndael allows key lengths (up to some library-determined limit, which is implementation-specific); AES only allows you to use 128, 192, or 256-bit keys (that's 16, 24 or 32-bytes). You might ask how that's secure; the simple answer is that since you can use any character (even NULLs) in your keys for most libraries, you can use any character in the universe. If your implementation allows, you can even use invalid UTF-8 code points! If we consider only the valid code points (1112064) you have, roughly, 10^(10^6.126799545566277), 10^(10^6.186075342271296), and 10^(10^6.223709558574334) possibilities for your key. Let's just say that all three of those power-of-10 representations are incredibly large numbers and leave it at that. If you include the invalid code points too, you have limitless possibilities that are impossible to test. (Unfortunately, I don't know of any UTF-8 library that will allow invalid code points; every one I know will replace them with some other code point that's valid, if the OS doesn't do it first.)

URL: https://forum.audiogames.net/post/421503/#p421503




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Can I decrypt data in Python if it was encrypted with BGT?

2019-03-22 Thread AudioGames . net Forum — Developers room : keithwipf1 via Audiogames-reflector


  


Re: Can I decrypt data in Python if it was encrypted with BGT?

How do you think BGT allows you to use a key of any length?Does it hash it, creating a string that's always the right length, or does it just add a sequence of characters to the end til it's long enough?

URL: https://forum.audiogames.net/post/421401/#p421401




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Can I decrypt data in Python if it was encrypted with BGT?

2019-03-20 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector


  


Re: Can I decrypt data in Python if it was encrypted with BGT?

@5, I don't really get what your getting at, and either way that doesn't really answer the question.BGT uses Rijndael 256 (which is AES-256). It does not, however, state which cipher mode it uses. You would need to try each and every mode, figure out how the nonce is stored, ensure you had the key and then work on decryption.

URL: https://forum.audiogames.net/post/420938/#p420938




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Can I decrypt data in Python if it was encrypted with BGT?

2019-03-20 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector


  


Re: Can I decrypt data in Python if it was encrypted with BGT?

@5, I don't really get what your getting at, and either way that doesn't really answer the question.BGT ises

URL: https://forum.audiogames.net/post/420938/#p420938




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Can I decrypt data in Python if it was encrypted with BGT?

2019-03-20 Thread AudioGames . net Forum — Developers room : Rastislav Kiss via Audiogames-reflector


  


Re: Can I decrypt data in Python if it was encrypted with BGT?

Yes and no. Why? You can find out the answer very easily yourself.In bgt, create one string called playnText. Save this string to file and encrypt it using file_encrypt function.Then load the encrypted file to string called enc1.After it, encrypt playnText string using the same password with string_encrypt function and save the result to enc2 string.Now, because of the same encryption algorithm used with the same password, you might think that enc1 and enc2 will be equal.The reality is also answer to your question regarding decrypting using python.Best regardsRastislav

URL: https://forum.audiogames.net/post/420898/#p420898




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Can I decrypt data in Python if it was encrypted with BGT?

2019-03-20 Thread AudioGames . net Forum — Developers room : Rastislav Kiss via Audiogames-reflector


  


Re: Can I decrypt data in Python if it was encrypted with BGT?

Yes and no. Why? You can find out the answer very easily yourself.In bgt, create one string called playnText. Save this string to file and encrypt it using file_encrypt function.Then load the encrypted file to string called enc1.After it, encrypt playnText string using the same password with string_encrypt function and save the result to enc2 string.Now, because of the same encryption algorithm used, along with the same password, you might think that enc1 and enc2 will be equal.The reality is also answer to your question regarding decrypting using python.Best regardsRastislav

URL: https://forum.audiogames.net/post/420898/#p420898




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Can I decrypt data in Python if it was encrypted with BGT?

2019-03-20 Thread AudioGames . net Forum — Developers room : keithwipf1 via Audiogames-reflector


  


Re: Can I decrypt data in Python if it was encrypted with BGT?

I'm interested in things like this.Also, the documentation for file_decrypt says BGT uses Rijndael 256 bit to decrypt and encrypt the data.I guess the reason you can use a key of any length is because the program can hash it.

URL: https://forum.audiogames.net/post/420803/#p420803




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Can I decrypt data in Python if it was encrypted with BGT?

2019-03-20 Thread AudioGames . net Forum — Developers room : roelvdwal via Audiogames-reflector


  


Re: Can I decrypt data in Python if it was encrypted with BGT?

Will require reverse-engineering of bgt's encryption algorithm. Not super hard to do, but why would you want to?

URL: https://forum.audiogames.net/post/420746/#p420746




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: Can I decrypt data in Python if it was encrypted with BGT?

2019-03-20 Thread AudioGames . net Forum — Developers room : pauliyobo via Audiogames-reflector


  


Re: Can I decrypt data in Python if it was encrypted with BGT?

If you can find which algorithm BGT uses for encryption you sure can decrypt. You also have to find if the text has been encrypted with multiple algorithms, if it has been hashed before the encryption etc etc.

URL: https://forum.audiogames.net/post/420743/#p420743




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector