Class: Ccrypto::Java::X509CSREngine
- Inherits:
-
Object
- Object
- Ccrypto::Java::X509CSREngine
- Includes:
- TR::CondUtils, TeLogger::TeLogHelper
- Defined in:
- lib/ccrypto/java/engines/x509_csr_engine.rb
Instance Method Summary collapse
- #generate(privKey, &block) ⇒ Object
-
#initialize(csrProf) ⇒ X509CSREngine
constructor
A new instance of X509CSREngine.
Constructor Details
#initialize(csrProf) ⇒ X509CSREngine
Returns a new instance of X509CSREngine.
11 12 13 |
# File 'lib/ccrypto/java/engines/x509_csr_engine.rb', line 11 def initialize(csrProf) @csrProfile = csrProf end |
Instance Method Details
#generate(privKey, &block) ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/ccrypto/java/engines/x509_csr_engine.rb', line 15 def generate(privKey, &block) cp = @csrProfile subject = to_cert_subject(cp) signHash = cp.hashAlgo raise X509CSREngineException, "Certificate hash algorithm '#{signHash}' is not supported" if not DigestEngine.is_digest_supported?(signHash) provider = block.call(:jce_provider) if block if provider.nil? teLogger.debug "Adding default provider" prov = Ccrypto::Java::JCEProvider::DEFProv else teLogger.debug "Adding provider #{provider.name}" prov = Ccrypto::Java::JCEProvider.add_provider(provider) end foundDigest = DigestEngine.find_digest_config(signHash) if foundDigest.length == 1 selDigest = foundDigest.first else ## prompt user for digest if block selDigest = block.call(:multiple_digest_algo_found, foundDigest) else raise X509EngineException, "Multiple digest algo found but not given a block. Not able to proceed." end end signHashVal = selDigest.provider_config[:algo_name].gsub("-","") #signHashVal = DigestEngine.find_digest_config(signHash).provider_config[:algo_name] #signHashVal.gsub!("-","") signAlgo = nil gKey = privKey loop do case gKey when org.bouncycastle.jcajce.provider.asymmetric.ec.BCECPrivateKey signAlgo = "#{signHashVal}WithECDSA" break when java.security.interfaces.RSAPrivateKey , org.bouncycastle.jcajce.provider.asymmetric.rsa.BCRSAPrivateCrtKey signAlgo = "#{signHashVal}WithRSA" break when Ccrypto::PrivateKey teLogger.debug "Found Ccrypto::Private key #{gKey}." gKey = gKey.native_privKey else raise X509CSREngineException, "Unsupported signing key type '#{gKey}'" end end p10Builder = org.bouncycastle.pkcs.jcajce.JcaPKCS10CertificationRequestBuilder.new(subject, cp.public_key) ext = [] cp.email.each do |e| ext << org.bouncycastle.asn1.x509.GeneralName.new(org.bouncycastle.asn1.x509.GeneralName.rfc822Name,e) end cp.dns_name.each do |dn| ext << org.bouncycastle.asn1.x509.GeneralName.new(org.bouncycastle.asn1.x509.GeneralName.dNSName,dn) end cp.ip_addr.each do |ip| ext << org.bouncycastle.asn1.x509.GeneralName.new(org.bouncycastle.asn1.x509.GeneralName.iPAddress,ip) end cp.uri.each do |u| ext << org.bouncycastle.asn1.x509.GeneralName.new(org.bouncycastle.asn1.x509.GeneralName.uniformResourceIdentifier,u) end #cp.custom_extension.each do |k,v| # val = v[:value] # val = "" if is_empty?(val) # ev = org.bouncycastle.asn1.x509.Extension.new(org.bouncycastle.asn1.DERObjectIdentifier.new(k), v[:critical], org.bouncycastle.asn1.DEROctetString.new(val.to_java.getBytes)) # ext << org.bouncycastle.asn1.x509.GeneralName.new(org.bouncycastle.asn1.x509.GeneralName.otherName,ev) #end gn = org.bouncycastle.asn1.x509.GeneralNames.new(ext.to_java(org.bouncycastle.asn1.x509.GeneralName)) eg = org.bouncycastle.asn1.x509.ExtensionsGenerator.new eg.addExtension(org.bouncycastle.asn1.x509.Extension.subjectAlternativeName, false, gn) cp.custom_extension.each do |k,v| val = v[:value] val = "" if is_empty?(val) ev = org.bouncycastle.asn1.x509.Extension.new(org.bouncycastle.asn1.ASN1ObjectIdentifier.new(k), v[:critical], org.bouncycastle.asn1.DEROctetString.new(val.to_java.getBytes)) eg.addExtension(ev) end p10Builder.addAttribute(org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers.pkcs_9_at_extensionRequest, eg.generate) sign = org.bouncycastle.operator.jcajce.JcaContentSignerBuilder.new(signAlgo).setProvider(prov).build(gKey) csr = p10Builder.build(sign) Ccrypto::X509CSR.new(csr) end |