-
Is there a way to specify which Windows certificate store msquic searches for the certificate? It seems like it only searches the user certificate store. I am currently using the msquic library in a Windows service running under the SYSTEM account, and would therefore like to be able to use the Local Computer certificate store. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You're going to want to take a look at |
Beta Was this translation helpful? Give feedback.
You're going to want to take a look at
QUIC_CERTIFICATE_HASH_STORE
which allows you to specify the store name and someQUIC_CERTIFICATE_HASH_STORE_FLAGS
flags, such asQUIC_CERTIFICATE_HASH_STORE_FLAG_MACHINE_STORE
since you're dealing with machine, not user certificates.