Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can I remove cipher.so keys from build.gradle after Java client is created? #26

Open
rupinderjeet opened this issue May 30, 2018 · 0 comments

Comments

@rupinderjeet
Copy link

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.

  1. I created keys.
cipher.so {

    keys {
        password {
            value = 'noonecanfindthis.'
        }
    }

    encryptSeed = 'HelloSe1cretKey'
}
  1. Rebuild the project.

  2. Change/Add keys

cipher.so {
    keep_previous_keys = true
    keys {
        user {
            value = 'meidik.'
        }
    }

    encryptSeed = 'HelloSe1cretKey'
}
  1. 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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant