This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
en:orx:config:encryption [2009/10/07 04:42 (16 years ago)] – iarwain | en:orx:config:encryption [2024/03/11 14:47 (13 months ago)] (current) – crypted.ini -> encrypted.ini iarwain | ||
---|---|---|---|
Line 18: | Line 18: | ||
@config.ini@ | @config.ini@ | ||
- | ; Finally we put all the settings that we don't want to end user to mess up with | + | ; Finally we include the file containing |
; If the end-user did provide values for them, they' | ; If the end-user did provide values for them, they' | ||
- | [...]</ | + | @encrypted.ini@</ |
In the same way, we can add included files for customized inputs, for example. We would add it just after the inclusion of config.ini.\\ | In the same way, we can add included files for customized inputs, for example. We would add it just after the inclusion of config.ini.\\ | ||
Line 40: | Line 40: | ||
; Non-overridable config stuff (ie. everything else) | ; Non-overridable config stuff (ie. everything else) | ||
- | [...]</ | + | @encrypted.ini@</ |
And, of course, you might not want the end-user to mess up with this file, so we now need to encrypt it when releasing our game. | And, of course, you might not want the end-user to mess up with this file, so we now need to encrypt it when releasing our game. | ||
- | |||
- | |||
===== Encryption ===== | ===== Encryption ===== | ||
Line 51: | Line 49: | ||
Well, now that we've said that, let's see how we can use it! =) | Well, now that we've said that, let's see how we can use it! =) | ||
- | First of all, we need an encryption key (or pass phrase). The longer, the better. If you don't provide any, orx's default one will be used, so you might want to change it for one of yours so that others | + | First of all, we need an encryption key (or pass phrase). The longer, the better. If you don't provide any, orx's default one will be used, so you might want to change it for one of yours so that others |
To set the encryption key, you need to call: | To set the encryption key, you need to call: | ||
Line 57: | Line 55: | ||
<code c> | <code c> | ||
- | Of course, as orx will load its main config file it is initialized, | + | Of course, as orx will load its main config file **when** |
<code c>int main(int argc, char **argv) | <code c>int main(int argc, char **argv) | ||
Line 150: | Line 148: | ||
<code dos> | <code dos> | ||
- |