8178458: Better use of certificates in LDAP

Reviewed-by: vinnie, asmotrak
This commit is contained in:
Weijun Wang 2017-09-14 07:45:53 +08:00
parent 143cb6a2d2
commit cd9f1a5c05

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -136,6 +136,11 @@ public final class LDAPCertStore extends CertStoreSpi {
+ params.getClass().getName() + " passed");
}
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkConnect(serverName, port);
}
Key k = new Key(serverName, port);
LDAPCertStoreImpl lci = certStoreCache.get(k);
if (lci == null) {