DeterministicKeyChain Builder - add seedCreationTimeSecs()

This commit is contained in:
Oscar Guindzberg 2015-01-28 17:17:37 -03:00
parent f1f07df11b
commit f3fa050c09

View file

@ -220,6 +220,11 @@ public class DeterministicKeyChain implements EncryptableKeyChain {
return self(); return self();
} }
public T seedCreationTimeSecs(long seedCreationTimeSecs) {
this.seedCreationTimeSecs = seedCreationTimeSecs;
return self();
}
/** The passphrase to use with the generated mnemonic, or null if you would like to use the default empty string. Currently must be the empty string. */ /** The passphrase to use with the generated mnemonic, or null if you would like to use the default empty string. Currently must be the empty string. */
public T passphrase(String passphrase) { public T passphrase(String passphrase) {
// FIXME support non-empty passphrase // FIXME support non-empty passphrase