File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 27
27
28
28
from pydantic import BaseModel , Field , StrictStr
29
29
30
- from sigstore ._internal .trustroot import RekorKeyring
30
+ from sigstore ._internal .trust import RekorKeyring
31
31
from sigstore ._utils import KeyID
32
32
from sigstore .errors import VerificationError
33
33
Original file line number Diff line number Diff line change 35
35
)
36
36
from cryptography .x509 .oid import ExtendedKeyUsageOID
37
37
38
- from sigstore ._internal .trustroot import CTKeyring
38
+ from sigstore ._internal .trust import CTKeyring
39
39
from sigstore ._utils import (
40
40
DERCert ,
41
41
KeyID ,
Original file line number Diff line number Diff line change 65
65
from sigstore .errors import Error , VerificationError
66
66
67
67
if typing .TYPE_CHECKING :
68
- from sigstore ._internal .trustroot import RekorKeyring
68
+ from sigstore ._internal .trust import RekorKeyring
69
69
70
70
71
71
_logger = logging .getLogger (__name__ )
Original file line number Diff line number Diff line change 62
62
)
63
63
from sigstore ._internal .rekor .client import RekorClient
64
64
from sigstore ._internal .sct import verify_sct
65
- from sigstore ._internal .trustroot import KeyringPurpose , TrustedRoot
65
+ from sigstore ._internal .trust import KeyringPurpose , TrustedRoot
66
66
from sigstore ._utils import sha256_digest
67
67
from sigstore .models import Bundle
68
68
from sigstore .oidc import ExpiredIdentity , IdentityToken
Original file line number Diff line number Diff line change 44
44
_get_precertificate_signed_certificate_timestamps ,
45
45
verify_sct ,
46
46
)
47
- from sigstore ._internal .trustroot import KeyringPurpose , TrustedRoot
47
+ from sigstore ._internal .trust import KeyringPurpose , TrustedRoot
48
48
from sigstore ._utils import base64_encode_pem_cert , sha256_digest
49
49
from sigstore .errors import VerificationError
50
50
from sigstore .hashes import Hashed
Original file line number Diff line number Diff line change 21
21
from cryptography .x509 import load_pem_x509_certificate
22
22
from sigstore_protobuf_specs .dev .sigstore .common .v1 import TimeRange
23
23
24
- from sigstore ._internal .trustroot import (
24
+ from sigstore ._internal .trust import (
25
25
KeyringPurpose ,
26
26
TrustedRoot ,
27
27
_is_timerange_valid ,
You can’t perform that action at this time.
0 commit comments