certified.cert — Certified
The Certified class is the main entry point for the library.
It reads a config directory and provides:
- SSL context creation for mTLS clients and servers
- HTTP client context managers: sync (
Client, httpx), async-httpx (AsyncClient), async-aiohttp (ClientSession) - A uvicorn-based HTTPS server launcher
- Management of known clients, services, and identities
Certified
Source code in certified/cert.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 | |
AsyncClient(base_url='', headers={})
async
Create an httpx.AsyncClient context that includes the current identity within its ssl context.
Use this for async code when you need an httpx.AsyncClient —
for example when integrating with frameworks such as A2A, LangChain,
or any library that accepts httpx.AsyncClient directly.
For aiohttp-based async code (e.g. existing tests or WebSocket
support) use ClientSession
instead.
Example:
cert = Certified()
async with cert.AsyncClient("https://my-api:8443") as http:
r = await http.get("/notes")
r.raise_for_status()
print(r.json())
Source code in certified/cert.py
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 | |
Client(base_url='', headers={})
Create an httpx.Client context that includes the current identity within its ssl context.
Use this for synchronous code. For async code see
AsyncClient (httpx) or
ClientSession (aiohttp).
Source code in certified/cert.py
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | |
ClientSession(base_url='', **kws)
async
Create an aiohttp.ClientSession context that includes the current identity within its ssl context (connector=...).
Source code in certified/cert.py
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 | |
add_client(name, cert, overwrite=False)
Add the certificate to known_clients
with the given name.
Source code in certified/cert.py
173 174 175 176 177 178 179 180 181 182 183 | |
add_identity(signed_cert, ca_cert, overwrite=False)
Add the signed certificate to the id/ subdirectory.
Params:
signed_cert: identity to add (to send to servers who recognize it)
ca_cert: certificate that signed this identity
(will be used to name the signed identity)
Returns: None
Raises:
| Type | Description |
|---|---|
ValueError
|
If the issuer name on the certificate does not match the subject name of the issuer or the signature algorithm is unsupported. |
TypeError
|
If the issuer does not have a supported public key type. |
InvalidSignature
|
If the signature fails to verify. |
Source code in certified/cert.py
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | |
add_service(name, srv, overwrite=False)
Add the certificate to known_servers
with the given info. See TrustedService
for documentation on the attributes.
Source code in certified/cert.py
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 | |
get_chain_from(auths)
Get a certificate chain from any of the signers to either "id.crt" (preferred) or "CA.crt" -> "id.crt" (second choice).
Returns the appropriate end-entity certificate along with a concatenation of all the certificates in the chain.
Source code in certified/cert.py
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | |
lookup_server(name)
Check if the server is known.
If so, return the service's config.
Source code in certified/cert.py
101 102 103 104 105 106 107 108 109 110 111 | |
new(name, san, certified_config=None, key_type=KeyType.ed25519, overwrite=False)
classmethod
Create a new CA and identity certificate
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
Name
|
the distinguished name for the signing key |
required |
san
|
SubjectAlternativeName
|
subject alternate name fields for the entity certificate |
required |
certified_config
|
Optional[Pstr]
|
base directory to output the new identity |
None
|
overwrite
|
bool
|
if True, any existing files will be deleted first |
False
|
Source code in certified/cert.py
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | |
replace_baseurl
Replace url's netloc with new_base, and prepend the path from new_base to url.path.
Leaves all other parts of url unchanged.
Source code in certified/cert.py
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | |