SPKAC is an acronym that stands for Signed Public Key and Challenge. It is a format for sending a Certification Signing Request: it encodes a public key, that can be manipulated using openssl.
Questions tagged [spkac]
5 questions
1
vote
1 answer
Migrating code using NetscapeSPKI
I am trying to migrate away from pyspkac, because it does not work with python 3.
My old, working code:
def createCertFromSPKAC(self, spkacInput, commonName, email):
if email is None:
theSPKAC = SPKAC(spkacInput, CN=commonName)
…

Árpád Magosányi
- 1,394
- 2
- 19
- 35
1
vote
1 answer
Generated certificate from phpseclib is valid but not recognised by browsers after KEYGEN submit
I'm trying to create a simple PKI infrastucture for internal use, and I want to use the html tag.
I know this tag sends an SPKAK to server, wich will have to sign it. Since I can't use exec to launch openssl, and have php 5.5, the only way…

JohnKiller
- 2,008
- 18
- 28
1
vote
0 answers
Create "Signed Public Key And Challenge" (SPKAC) with .NET
Is it possible to create an SPKAC (signed public key and challenge) with .NET without the use of OpenSSL? I know that OpenSSL can do this, but for this project I need to avoid third-party libraries.
Actually I want to do what the HTML5 …

fero
- 6,050
- 1
- 33
- 56
0
votes
1 answer
element empty in POST after form submit
I have a form as follows:
0
votes
2 answers
Submitting form containing using POST in AngularJS
For the first time I have oi submit a form in AngularJS using POST Http Request, in particular this form contains a keygen element that generates a key as follows:
The…

mzereba
- 2,467
- 5
- 26
- 40