awslabs / llrt

LLRT (Low Latency Runtime) is an experimental, lightweight JavaScript runtime designed to address the growing demand for fast and efficient Serverless applications.
Apache License 2.0
8.11k stars 359 forks source link

is any option to post https request with client certificate as pfx and passphrase #492

Open SSathish89 opened 3 months ago

SSathish89 commented 3 months ago

Kindly suggest any work around to post https request with client certificate as pfx and passphrase

nabetti1720 commented 3 months ago

Hi @SSathish89 , I have done some research on this issue.

LLRT currently relies on rustls_pemfile crates. A rustls_pemfile crate does not support pfx files, only pem files can be specified. Can we consider the possibility of extracting the desired certificate from a pfx file and using it as a pem file?

https://github.com/awslabs/llrt?tab=readme-ov-file#llrt_extra_ca_certsfile

richarddavison commented 1 month ago

@SSathish89 did this solve your problem ☝️?