1
0
mirror of https://github.com/facebookincubator/mvfst.git synced 2025-11-25 15:43:13 +03:00

add getDER() to folly::AsyncTransportCertificate

Summary: Some implementations of this cert will need to access a DER representation of the Cert. So adding this to the interface.

Reviewed By: mingtaoy

Differential Revision: D64149926

fbshipit-source-id: f471ef71e042111aba67277cd3b0101e34f92169
This commit is contained in:
Zale Young
2024-10-16 18:08:03 -07:00
committed by Facebook GitHub Bot
parent 86999c8fbe
commit 5f84352adb

View File

@@ -5606,6 +5606,9 @@ class QuicServerTransportCertTest : public QuicServerTransportTest {
std::string getIdentity() const override { std::string getIdentity() const override {
return ""; return "";
} }
std::optional<std::string> getDER() const override {
return std::nullopt;
}
}; };
}; };