use of de.carne.certmgr.certs.PasswordCallback in project certmgr by hdecarne.
the class CertImportController method importSelection.
void importSelection(Set<UserCertStoreEntry> importSelection) throws IOException {
PasswordCallback newPassword = PasswordDialog.enterNewPassword(this);
UserCertStore importStore = this.importStoreParam.get();
for (UserCertStoreEntry importEntry : importSelection) {
importStore.importEntry(importEntry, newPassword, CertImportI18N.formatSTR_TEXT_ALIASHINT());
}
}
Aggregations