Dart
Dart
Add Trusted Certificate to JKS
See more Java KeyStore (JKS) Examples
Adds a trusted certificate to a Java keystore file.Chilkat Dart Downloads
import 'package:chilkat/chilkat.dart';
void main() {
// This requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
final jks = CkJavaKeyStore();
final jksPassword = 'secret';
final jksPath = '/myJksTrustedCerts/cacerts.jks';
// Load the Java keystore from a file.
try {
jks.loadFile(jksPassword, jksPath);
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
final cert = CkCert();
// The cert's LoadFrommFile method can load a certificate from
// virtually any format. It will automatically determine the format
// and load appropriately.
try {
cert.loadFromFile('/certFiles/myNewTrustedCert.pem');
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
// The alias can be anything. It's basically just a label
// used within the JKS associated with the entry. It should
// be unique among aliases within the JKS file.
final alias = 'habanero';
try {
jks.addTrustedCert(cert, alias);
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
// Write the JKS containing the new certificate.
try {
jks.toFile(jksPassword, jksPath);
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
print('Added a trusted certificate to the JKS.');
}