openshell-shared 0.1.5__tar.gz → 0.1.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/PKG-INFO +1 -1
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/protocols/negotiation/challenge.py +1 -1
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared.egg-info/PKG-INFO +1 -1
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/pyproject.toml +1 -1
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/README.md +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/authentication.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/client.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/domains.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/entities.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/exceptions.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/identity.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/models.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/passports.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/sessions.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/transport.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/tunnels.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/cryptography/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/cryptography/certificate.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/cryptography/encoding.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/cryptography/identity.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/cryptography/keys.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/cryptography/signatures.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/cryptography/utils.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/domain/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/domain/domain.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/domain/membership.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/domain/permissions.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/domain/policies.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/identity/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/identity/identification.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/identity/store.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/modules/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/modules/shell/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/modules/shell/client.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/modules/shell/models.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/modules/shell/protocol.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/modules/shell/server.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/modules/shell/session.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/modules/utils.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/protocols/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/protocols/negotiation/models.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/certificates/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/certificates/status.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/certificates/types.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/entities/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/entities/types.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/events/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/events/schemas/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/events/schemas/entity_registered.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/events/types.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/passports/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/passports/types.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/permissions/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/permissions/types.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/roles/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/roles/types.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/transports/__init__.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/transports/types.py +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared.egg-info/SOURCES.txt +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared.egg-info/dependency_links.txt +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared.egg-info/requires.txt +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared.egg-info/top_level.txt +0 -0
- {openshell_shared-0.1.5 → openshell_shared-0.1.6}/setup.cfg +0 -0
|
@@ -6,7 +6,7 @@ from time import time
|
|
|
6
6
|
from uuid6 import uuid7
|
|
7
7
|
|
|
8
8
|
from .models import AuthenticationChallenge, AuthenticationResponse
|
|
9
|
-
from
|
|
9
|
+
from ...cryptography.signatures import sign_data, verify_signature
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
SCHEMA_VERSION = 1
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/__init__.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/authentication.py
RENAMED
|
File without changes
|
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/domains.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/entities.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/exceptions.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/identity.py
RENAMED
|
File without changes
|
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/passports.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/sessions.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/transport.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/api/manager/v1/tunnels.py
RENAMED
|
File without changes
|
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/cryptography/certificate.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/cryptography/signatures.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/identity/identification.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/modules/shell/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/modules/shell/protocol.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/protocols/negotiation/models.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/certificates/status.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/certificates/types.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/entities/__init__.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/entities/types.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/events/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/events/types.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/passports/__init__.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/passports/types.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/permissions/__init__.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/permissions/types.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/roles/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/transports/__init__.py
RENAMED
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared/standards/transports/types.py
RENAMED
|
File without changes
|
|
File without changes
|
{openshell_shared-0.1.5 → openshell_shared-0.1.6}/openshell_shared.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|