-1

Wanted to send/generate a Certificate generation Request to EJBCA server using CMP(Certificate Management protocol) with HTTP communication using Golang language?

I found a similar implementation with JAVA here --> CMP certificate request

Any suggestions on how to do it the same with Golang?

Syam Kumar
  • 561
  • 2
  • 5
  • 20

1 Answers1

1

Typically in other languages like C/C++, Java, C# you use a library that imlements a higher level API to do the CMP message creation, parsing, verification etc, for example Bouncy Castle or OpenSSL. In Go I don't know if there exists a good module library for this? You can always hand-roll the ASN.1 of course, as the base is still PKCS#10 certificate requests, but with a lot of wrapping for various purposes.

primetomas
  • 524
  • 2
  • 5