Questions tagged [ejbca]

EJBCA is an enterprise class PKI Certificate Authority software.

EJBCA is OSI Certified open-source software and the source code is available on SourceForge. For more information, please see the project web site.

85 questions
0
votes
2 answers

NPE during Renew super admin certificate

We have an super admin certificate expired. Tried to renew it using ejbca.sh and in the last step it failed: [jboss@63a2ea1bfbfd bin]$ ./ejbca.sh batch ./ejbca.sh: line 3: which: command not found Use 'batch --help' for additional…
Gardella Juan
  • 382
  • 5
  • 12
0
votes
1 answer

installation of EJBCA as a CA

root@casandbox:/home/ejbca/ejbca_ce_7_4_3_2# ant runinstall Buildfile: /home/ejbca/ejbca_ce_7_4_3_2/build.xml customejbca.message: [echo] No custom changes to merge. appserver.error.message: runinstall: BUILD…
Wendy
  • 1
0
votes
1 answer

How to create a (complete) certification authority for P2P system

I need a to create a certification authority server for a P2P system, aka, I need a system that: Receives requests for certificates Create certificates from the requests Provide certificates as asked All this must be done through APIs, so it can…
0
votes
0 answers

Spring Boot Return the Response Before the Process is Complete

I am using Spring Boot to process certificate and client postman to interact with service, assumption privatekey, publickey and certificate has been process decrypted, then using CertificateHelper getCertificate() function to…
blinkbink
  • 89
  • 5
0
votes
1 answer

Ports closed after EJBCA (JEE application) deployment

I just finished deploying ejbca 6 on debian9 azure VM using this tutorial : https://wiki.e-odyssey.net/ejbca/french-tuto The installation succeeds, however : the ports 443,80 were closed root@ejbcaDebian9:/home/ejbca# nmap…
0
votes
1 answer

Access impossible to newly setup EJBCA PKI

I have just finished installing ejbca community edition on top of wildfly. The EJBCA server is a VM in the azure cloud. everything went fine during build : Build successful for every 3 steps of deployment. - ant deployear - ant runinstall - ant…
0
votes
1 answer

EJBCA SOAP interface returning index out of bound exception

I am in a big problem . I have to call EJBCA web services in a python client in order to post a certificate . I wrote my code as follow : session = Session() session.verify = False session.cert =…
Hana_CH
  • 105
  • 1
  • 12
0
votes
1 answer

Adminweb works even without existance of client certificate (after ejecting hardware token)

i have a weird problem. i made an entitiy as admin for CA with custom privileges and after that i imported its keystore into a hardware token (using "create browser certificate" in public web )and i imported its certificate in hardware token as…
0
votes
1 answer

Create EJBCA subCA during EJBCA installation

I am learning how to install and use EJBCA to deploy an enterprise PKI. I know I can install EJBCA using a quick install configuring the script ejbca-setup like is explained here, and I also have tested a longer install process with WildFly 10 like…
RobertGG
  • 75
  • 10
0
votes
1 answer

Java application can't connect to https web service using EJBCA library

I wish that a Java application connects to web service using EJBCA library but it throws an exception. You see the following void method trying to connect to Ejbca protected void connectToEjbca() { LOG.info("Establishing Ejbca conecction"); …
user3637971
  • 313
  • 5
  • 21
0
votes
2 answers

Missing extended key usage in Signserver but it is marked and critical during enrollment in EJBCA

I am trying to use EJBCA enrolled certificate in signserver. There is some problem during usage it in timestamping. It gives this error using command signserver getstatus brief all Errors: - Missing extended key usage timeStamping - The…
user2426998
  • 483
  • 5
  • 20
0
votes
1 answer

Signserver exception cryptoTokenOfflineException: Signtoken isn't active

I am setting up workers for PDF signing and time stamping. I use PKCS #12 certificate generated from EJBCA. key is SHA256WithECDSA encryption is ECDSA prime256v1. After using this properties(https://pastebin.com/bkpNBvc1) for setting up I am getting…
user2426998
  • 483
  • 5
  • 20
0
votes
2 answers

Missing JKS truststorestore file in 'c:\ejbca\p12\truststore.jks' while installing Ejbca on Windows

I am installing EJBCA on a Windows . OS version: Windows Server 2016 Java: OpenJDK 8.0.242.08 Ant: ant 1.9.14 Database: MariaDB 10.4.12 Server: Wildfly 10.1.0 EJBCA Version: 6.15.2 Installation proceeded using this…
user2426998
  • 483
  • 5
  • 20
0
votes
2 answers

I can't extract private keys from EJBCA Community Edition - PrivateKeyNotExtractableException

Started using EJBCA Community Edition and I'm fairly happy with it although a bit overkill for my needs. I would like to back up the private keys for my Root and Issuer CA in case I later decide for a different tool or to simply do this with openssl…
Emanuel George Hategan
  • 1,123
  • 1
  • 13
  • 22
0
votes
1 answer

generating pfx with 3DES without SHA1 as signature algo

I have a certificate in a .PEM file and a key. The signing algorithm of the certificate file is SHA256WithRSAEncryption. When I create a .p12/.pfx file using the certificate file and the key the Signature Algorithm of .p12/.pfx file changes to PKCS7…