00:00
00:00
Newgrounds Background Image Theme

Someone gifted MetalSlayer69 supporter status!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!
Response to: About Encrypting NG IO Keys Posted October 16th, 2021 in Programming

since as of now this technically isn't considered necroposting, I should add the solution I've come to is to use a verification server in the middle that receives some gameplay data, constructs the final score stuff, then uploads that to ngio. this should both hide the io key and prevent illegal data

Response to: About Encrypting NG IO Keys Posted September 6th, 2021 in Programming

At 9/4/21 07:35 PM, Gimmick wrote: This is a known hard problem and it applies to API keys everywhere, not just for NG.io. Basically, if you're distributing binaries to users (be it in the form of desktop applications, mobile apps, web games, etc.) and these binaries need to contact a third party service through an API key, then there's no way that you can 100% prevent someone from getting the API key if they want.


Yeah, I was always aware of this, I just know from personally digging in stuff that putting stuff in plaintext is a super easy way to get keys and codes stolen with no effort. But I'll keep your suggestions in mind. Thanks!

About Encrypting NG IO Keys Posted August 30th, 2021 in Programming

So I'm mainly just curious. In something using the Newgrounds IO, how should one encrypt the keys? I've never done cryptography stuff before, so this stuff is kinda out of my scope to figure out on my own. Thought someone here would know, cuz storing the keys in plaintext is a super lame and bad idea.

Response to: Newgrounds.io Help & Support Posted August 16th, 2021 in Game Development

hey, so I'm curious on if there is (or will be) a fork of newgrounds.io specifically for C/C++ and emscripten, official or not. if there isn't I might attempt it (although I can't promise anything cuz im kinda shit at emscripten, only really throwing together basic video + sound tests oops)

Response to: Is C ++ still used for web pages? Posted August 10th, 2021 in Programming

You can compile C++ into WebAssembly using something like Emscripten. I personally have been using it and it works rather well for what it is. Obviously WebAssembly would have better performance than JavaScript, being bytecode.

Response to: Game API and SharedArrayBuffer updates! Posted July 20th, 2021 in NG News

At 7/20/21 07:35 PM, tehdroopy wrote:
At 7/20/21 07:33 PM, CuckyDev wrote: thank you tom fulp now I can create video games on newgrounds that use threading as I refuse to learn any language that isn't C or C++
For what reason? And which one do you like more, C or C++?


I prefer C over C++, but I use both. the main reason that I use them is that I prefer to be in control of my program's execution, performance, memory usage, all that crap. most languages and game engines abstract that stuff and can make it pretty difficult to figure out where something's going wrong, so I'd rather just cut out the middleman.

Response to: Game API and SharedArrayBuffer updates! Posted July 20th, 2021 in NG News

thank you tom fulp now I can create video games on newgrounds that use threading as I refuse to learn any language that isn't C or C++