fix: move 0:/etc/ => 0:/os/certs/

This commit is contained in:
2026-05-28 20:30:00 +02:00
parent e0778c1b2c
commit e17a8de844
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -325,7 +325,7 @@ Provides a high-level `tls::https_fetch()` that handles socket creation, BearSSL
```cpp
#include <tls/tls.hpp>
// Load CA certificates (from 0:/etc/ca-certificates.crt)
// Load CA certificates (from 0:/os/certs/ca-certificates.crt)
tls::TrustAnchors tas = tls::load_trust_anchors();
// Build HTTP request
@@ -349,7 +349,7 @@ if (n > 0) {
```cpp
namespace tls {
// Load PEM CA bundle from 0:/etc/ca-certificates.crt
// Load PEM CA bundle from 0:/os/certs/ca-certificates.crt
TrustAnchors load_trust_anchors();
// High-level: DNS → socket → TLS → exchange → cleanup