Cipher.so
Cipher.so copied to clipboard
Can I remove cipher.so keys from build.gradle after Java client is created?
Can this functionality be introduced to retain previous keys?
I don't know how this works, or even if it is possible.
For e.g. It might look like this.
- I created keys.
cipher.so {
keys {
password {
value = 'noonecanfindthis.'
}
}
encryptSeed = 'HelloSe1cretKey'
}
-
Rebuild the project.
-
Change/Add keys
cipher.so {
keep_previous_keys = true
keys {
user {
value = 'meidik.'
}
}
encryptSeed = 'HelloSe1cretKey'
}
- After Rebuild, remove keys from build.gradle
cipher.so {
keep_previous_keys = true
encryptSeed = 'HelloSe1cretKey'
}
We can do same for encryptSeed as well. Can this be done?