massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / cryptography / cryptography / x509 / extensions.pyi
1 from typing import Any, Iterator
2
3 from cryptography.x509 import GeneralName, ObjectIdentifier
4
5 class Extension:
6     value: Any = ...
7
8 class GeneralNames:
9     def __iter__(self) -> Iterator[GeneralName]: ...
10
11 class DistributionPoint:
12     full_name: GeneralNames = ...
13
14 class CRLDistributionPoints:
15     def __iter__(self) -> Iterator[DistributionPoint]: ...
16
17 class AccessDescription:
18     access_method: ObjectIdentifier = ...
19     access_location: GeneralName = ...
20
21 class AuthorityInformationAccess:
22     def __iter__(self) -> Iterator[AccessDescription]: ...