Miroshin Stepan
Miroshin Stepan
@gine I updated xmldsig. I can't publish it, cause it have some `security/snyc` issues. I'll fix it later. But you can try new version ``` npm i https://github.com/PeculiarVentures/xmldsigjs#update ``` If...
@Ameb I added `prepare` script to package.json. It must fix error. Can you try it again?
@Ameb I'll fix `security/snyc` issue and publish new version. Thank you for test
Your script doesn't have any XML example you need to get. I took example from this link https://docs.unified-streaming.com/documentation/drm/cpix_signaling_behaviour.html Here is my code ```ts @XmlElement({ localName: "HLSSignalingData" }) class HLSSignalingData extends...
@rmhrisk could you help to make a list of extensions and Attributes (for CSR) which we need?
Here are properties that Windows supports: - Subject name  - Subject alternative name   - Extensions  - Key usage  - Extended Key Usage  - Basic...
`MD5` and `DES-CBC` algorithms are not supported by WebCrypto API. You also need an extended crypto module. [webcrypto-liner](https://github.com/PeculiarVentures/webcrypto-liner) (for Browser) and [@peculiar/webcrypto](https://github.com/PeculiarVentures/webcrypto) (for NodeJS) implement `DES-CBC`.
Current version doesn't check certificate revocations. You can use current API for path building. And check by yourself that the last cert in chain is trusted ```js const chain =...
### Example ```ts import * as x509 from "@peculiar/x509"; // Read certificates const rootCert = new x509.X509Certificate(rootRaw); const ca1Cert = new x509.X509Certificate(ca1Raw); const ca2Cert = new x509.X509Certificate(ca2Raw); const ca3Cert =...
I've updated README file and added more examples. Please look at this https://github.com/PeculiarVentures/tsprotobuf/blob/master/README.md