HDDS-588. SelfSignedCertificate#generateCertificate should sign the certificate the configured security provider. Contributed by Xiaoyu Yao.
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/f43dac5b Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/f43dac5b Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/f43dac5b Branch: refs/heads/HDDS-4 Commit: f43dac5b79a4287841a1290d7e0a64913338c59e Parents: 1565894 Author: Ajay Kumar <a...@apache.com> Authored: Tue Oct 9 00:28:01 2018 -0700 Committer: Xiaoyu Yao <x...@apache.org> Committed: Tue Dec 4 08:03:15 2018 -0800 ---------------------------------------------------------------------- .../hdds/security/x509/certificates/SelfSignedCertificate.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/f43dac5b/hadoop-hdds/common/src/main/java/org/apache/hadoop/hdds/security/x509/certificates/SelfSignedCertificate.java ---------------------------------------------------------------------- diff --git a/hadoop-hdds/common/src/main/java/org/apache/hadoop/hdds/security/x509/certificates/SelfSignedCertificate.java b/hadoop-hdds/common/src/main/java/org/apache/hadoop/hdds/security/x509/certificates/SelfSignedCertificate.java index fef7ac3..f221246 100644 --- a/hadoop-hdds/common/src/main/java/org/apache/hadoop/hdds/security/x509/certificates/SelfSignedCertificate.java +++ b/hadoop-hdds/common/src/main/java/org/apache/hadoop/hdds/security/x509/certificates/SelfSignedCertificate.java @@ -103,8 +103,8 @@ public final class SelfSignedCertificate { ContentSigner contentSigner = - new JcaContentSignerBuilder( - config.getSignatureAlgo()).build(key.getPrivate()); + new JcaContentSignerBuilder(config.getSignatureAlgo()) + .setProvider(config.getProvider()).build(key.getPrivate()); // Please note: Since this is a root certificate we use "ONE" as the // serial number. Also note that skip enforcing locale or UTC. We are --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-commits-h...@hadoop.apache.org