python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Convert Google KMS signatures from DER-encoded format to .Net IEEE 1363 format
I would like to convert signature in DER-encoded format (which I get from google KMS service) to IEEE 1363 format using C# (in order to validate the signature)
How it is done in C#, .Net Core 5 ?
Lior Schwimmer
Votes: 0
Answers: 1
powershell : "openssl x509 -in file.pem -text" equivalent
I must be using the wrong query because I cannot find how to do in Powershell what I do with a simple:
openssl x509 -in file.pem -text
I guess Powershell provides native commands to show certificate ...
Francesco Papini
Votes: 0
Answers: 1
How can I fit large integer (public key) INTEGER of ASN.1 into small int64 of struct?
I have to represent (ASN.1/DER SEQUENCE) pseudocode:
SEQUENCE ::= {
INTEGER
SEQUENCE {...}
...
}
Where INTEGER should be a PUBLIC KEY
In terms of Golang struct I have so far pseudoc...
ojacomarket
Votes: 0
Answers: 2
I am trying to decode and extract octet string from the extension of X509Certificate, but I did not get any valid string
I have been trying to decode the octet string as per steps mentioned in
https://developer.apple.com/documentation/devicecheck/validating_apps_that_connect_to_your_server?language=objc
Here is what I h...

Sandip Nepal
Votes: 0
Answers: 2