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)
Extracting a private key buffer from WebCrypto generated CryptoKey (private)
I probably already know the answer (ie. not possible), but hopefully I overlooked something, because otherwise the WebCrypto implementation is truly unbelievably crap..
Basically the problem is this:
...
Patrik Šimunič
Votes: 0
Answers: 0
Java read .cdr-File
right now I#m trying to write a program which reads a .cdr-File. The Format of the CDR-File looks like this:
***************
* File header *
*...
anonymoususer123
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
ASN.1 sequence with missing tag/length field
I'm implementing a specification that, as the outermost data type, specifies a sequence
LogMessage ::= SEQUENCE {
version INTEGER (4),
...
}
When encoded, I would expect the messages to always ...
performancematters
Votes: 0
Answers: 0