Miroshin Stepan

Results 356 comments of 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 ![image](https://user-images.githubusercontent.com/7333669/124457961-18bf7c00-dd95-11eb-97db-8389af06a690.png) - Subject alternative name ![image](https://user-images.githubusercontent.com/7333669/124458206-620fcb80-dd95-11eb-8bf0-bafdab77650b.png) ![image](https://user-images.githubusercontent.com/7333669/124458254-6c31ca00-dd95-11eb-9b60-126782cade9b.png) - Extensions ![image](https://user-images.githubusercontent.com/7333669/124458501-b87d0a00-dd95-11eb-98db-5ccea09fe87c.png) - Key usage ![image](https://user-images.githubusercontent.com/7333669/124458572-cdf23400-dd95-11eb-87c9-7359ec347741.png) - Extended Key Usage ![image](https://user-images.githubusercontent.com/7333669/124458645-e82c1200-dd95-11eb-9ac8-d5b6ced62b35.png) - 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