Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle failed tails server issuance [Anoncreds] #3049

Merged
merged 5 commits into from
Jun 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions aries_cloudagent/anoncreds/base.py
Original file line number Diff line number Diff line change
@@ -6,11 +6,7 @@
from ..config.injection_context import InjectionContext
from ..core.error import BaseError
from ..core.profile import Profile
from .models.anoncreds_cred_def import (
CredDef,
CredDefResult,
GetCredDefResult,
)
from .models.anoncreds_cred_def import CredDef, CredDefResult, GetCredDefResult
from .models.anoncreds_revocation import (
GetRevListResult,
GetRevRegDefResult,
@@ -59,10 +55,7 @@ def __init__(
Args:
message: Message
obj_id: Object ID
obj: Object

TODO: update this docstring - Anoncreds-break.

obj: Generic Object
"""
super().__init__(message, obj_id, obj, *args, **kwargs)
self._message = message
8 changes: 2 additions & 6 deletions aries_cloudagent/anoncreds/default/did_indy/registry.py
Original file line number Diff line number Diff line change
@@ -7,11 +7,7 @@
from ....config.injection_context import InjectionContext
from ....core.profile import Profile
from ...base import BaseAnonCredsRegistrar, BaseAnonCredsResolver
from ...models.anoncreds_cred_def import (
CredDef,
CredDefResult,
GetCredDefResult,
)
from ...models.anoncreds_cred_def import CredDef, CredDefResult, GetCredDefResult
from ...models.anoncreds_revocation import (
GetRevListResult,
GetRevRegDefResult,
@@ -32,7 +28,7 @@ def __init__(self):
"""Initialize an instance.

Args:
TODO: update this docstring - Anoncreds-break.
None

"""
self._supported_identifiers_regex = re.compile(r"^did:indy:.*$")
2 changes: 1 addition & 1 deletion aries_cloudagent/anoncreds/default/did_web/registry.py
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ def __init__(self):
"""Initialize an instance.

Args:
TODO: update this docstring - Anoncreds-break.
None

"""
self._supported_identifiers_regex = re.compile(
8 changes: 4 additions & 4 deletions aries_cloudagent/anoncreds/default/legacy_indy/registry.py
Original file line number Diff line number Diff line change
@@ -111,7 +111,7 @@ def __init__(self):
"""Initialize an instance.

Args:
TODO: update this docstring - Anoncreds-break.
None

"""
B58 = alphabet if isinstance(alphabet, str) else alphabet.decode("ascii")
@@ -621,7 +621,9 @@ async def register_revocation_registry_definition(
endorser_did=endorser_did,
)
except LedgerError as err:
raise AnonCredsRegistrationError(err.roll_up) from err
LOGGER.error(
f"Error registering revocation registry definition {rev_reg_def_id}: {err.roll_up}" # noqa: E501
)

# Didn't need endorsement
if write_ledger:
@@ -1108,7 +1110,6 @@ def _wallet_accumalator_matches_ledger_list(
)

async with profile.session() as session:

LOGGER.debug(f"revocation_list = {rev_list.revocation_list}")
LOGGER.debug(f"rev_reg_delta = {rev_reg_delta.get('value')}")

@@ -1117,7 +1118,6 @@ def _wallet_accumalator_matches_ledger_list(
)

if not _wallet_accumalator_matches_ledger_list(rev_list, rev_reg_delta):

recovery_txn = await generate_ledger_rrrecovery_txn(
genesis_transactions, rev_list
)
9 changes: 0 additions & 9 deletions aries_cloudagent/anoncreds/events.py
Original file line number Diff line number Diff line change
@@ -37,9 +37,6 @@ def __init__(

Args:
payload: CredDefFinishedPayload

TODO: update this docstring - Anoncreds-break.

"""
self._topic = CRED_DEF_FINISHED_EVENT
self._payload = payload
@@ -82,9 +79,6 @@ def __init__(self, payload: RevRegDefFinishedPayload):

Args:
payload: RevRegDefFinishedPayload

TODO: update this docstring - Anoncreds-break.

"""
self._topic = REV_REG_DEF_FINISHED_EVENT
self._payload = payload
@@ -122,9 +116,6 @@ def __init__(self, payload: RevListFinishedPayload):

Args:
payload: RevListFinishedPayload

TODO: update this docstring - Anoncreds-break.

"""
self._topic = REV_LIST_FINISHED_EVENT
self._payload = payload
2 changes: 1 addition & 1 deletion aries_cloudagent/anoncreds/issuer.py
Original file line number Diff line number Diff line change
@@ -310,7 +310,7 @@ async def create_and_register_credential_definition(
if not isinstance(support_revocation, bool):
raise ValueError("support_revocation must be a boolean")

max_cred_num = options.get("max_cred_num", DEFAULT_MAX_CRED_NUM)
max_cred_num = options.get("revocation_registry_size", DEFAULT_MAX_CRED_NUM)
if not isinstance(max_cred_num, int):
raise ValueError("max_cred_num must be an integer")

60 changes: 23 additions & 37 deletions aries_cloudagent/anoncreds/models/anoncreds_cred_def.py
Original file line number Diff line number Diff line change
@@ -34,14 +34,15 @@ def __init__(self, n: str, s: str, r: dict, rctxt: str, z: str, **kwargs):
"""Initialize an instance.

Args:
n: n
s: s
r: r
rctxt: rctxt
z: z

TODO: update this docstring - Anoncreds-break.

n: is a safe RSA-2048 number.
s: is a randomly selected quadratic residue of n.
r: is an object that defines a CL-RSA public key fragment
for each attribute in the credential.
rctxt: is equal to s^(xrctxt), where xrctxt is a randomly selected integer
between 2 and p'q'-1.
z: is equal to s^(xz), where xz is a randomly selected integer between 2
and p'q'-1. This makes up part of the CL-RSA public key, independent of
the message blocks being signed.
"""
super().__init__(**kwargs)
self.n = n
@@ -92,20 +93,20 @@ def __init__(
"""Initialize an instance.

Args:
g: g
g_dash: g_dash
h: h
h0: h0
h1: h1
h2: h2
htilde: htilde
h_cap: h_cap
u: u
pk: pk
y: y

TODO: update this docstring - Anoncreds-break.

g: is a generator for the elliptic curve group G1.
g_dash: is a generator for the elliptic curve group G2.
h: is an elliptic curve point selected uniformly at random from G1.
h0: is an elliptic curve point selected uniformly at random from G1.
h1: is an elliptic curve point selected uniformly at random from G1.
h2: is an elliptic curve point selected uniformly at random from G1.
htilde: is an elliptic curve point selected uniformly at random from G1.
h_cap: is an elliptic curve point selected uniformly at random from G2.
u: is an elliptic curve point selected uniformly at random from G2.
pk: is the public key in G1 for the issuer with respect to this accumulator,
computed as g^sk (in multiplicative notation), where sk is from
r_key above.
y: is the an elliptic curve point in G2. computed as h_cap^x
(in multiplicative notation), where x is from r_key above
"""
self.g = g
self.g_dash = g_dash
@@ -171,9 +172,6 @@ def __init__(
Args:
primary: Cred Def value primary
revocation: Cred Def value revocation

TODO: update this docstring - Anoncreds-break.

"""
super().__init__(**kwargs)
self.primary = primary
@@ -225,9 +223,6 @@ def __init__(
type: Type
tag: Tag
value: Cred Def value

TODO: update this docstring - Anoncreds-break.

"""
super().__init__(**kwargs)
self.issuer_id = issuer_id
@@ -307,9 +302,6 @@ def __init__(
state: State
credential_definition_id: Cred Def ID
credential_definition: Cred Def

TODO: update this docstring - Anoncreds-break.

"""
self.state = state
self.credential_definition_id = credential_definition_id
@@ -370,9 +362,6 @@ def __init__(
credential_definition_state: Cred Def state
registration_metadata: Registration metadata
credential_definition_metadata: Cred Def metadata

TODO: update this docstring - Anoncreds-break.

"""
super().__init__(**kwargs)
self.job_id = job_id
@@ -420,9 +409,6 @@ def __init__(
credential_definition: Cred Def
resolution_metadata: Resolution metadata
credential_definition_metadata: Cred Def metadata

TODO: update this docstring - Anoncreds-break.

"""
super().__init__(**kwargs)
self.credential_definition_id = credential_definition_id
27 changes: 0 additions & 27 deletions aries_cloudagent/anoncreds/models/anoncreds_revocation.py
Original file line number Diff line number Diff line change
@@ -41,9 +41,6 @@ def __init__(
max_cred_num: Max. number of Creds
tails_location: Tails file location
tails_hash: Tails file hash

TODO: update this docstring - Anoncreds-break.

"""
super().__init__(**kwargs)
self.public_keys = public_keys
@@ -102,9 +99,6 @@ def __init__(
cred_def_id: Cred Def ID
tag: Tag
value: Rev Reg Def Value

TODO: update this docstring - Anoncreds-break.

"""
super().__init__(**kwargs)
self.issuer_id = issuer_id
@@ -183,9 +177,6 @@ def __init__(
state: State
revocation_registry_definition_id: Rev Reg Definition ID
revocation_registry_definition: Rev Reg Definition

TODO: update this docstring - Anoncreds-break.

"""
self.state = state
self.revocation_registry_definition_id = revocation_registry_definition_id
@@ -247,9 +238,6 @@ def __init__(
revocation_registry_definition_state: Rev Reg Def state
registration_metadata: Registration metadata
revocation_registry_definition_metadata: Rev Reg Def metadata

TODO: update this docstring - Anoncreds-break.

"""
super().__init__(**kwargs)
self.job_id = job_id
@@ -311,9 +299,6 @@ def __init__(
revocation_registry_id: Revocation Registry ID
resolution_metadata: Resolution metadata
revocation_registry_metadata: Revocation Registry metadata

TODO: update this docstring - Anoncreds-break.

"""
super().__init__(**kwargs)
self.revocation_registry = revocation_registry
@@ -362,9 +347,6 @@ def __init__(
revocation_list: Revocation list
current_accumulator: Current accumulator
timestamp: Timestamp

TODO: update this docstring - Anoncreds-break.

"""
super().__init__(**kwargs)
self.issuer_id = issuer_id
@@ -453,9 +435,6 @@ def __init__(
Args:
state: State
revocation_list: Revocation list

TODO: update this docstring - Anoncreds-break.

"""
self.state = state
self.revocation_list = revocation_list
@@ -508,9 +487,6 @@ def __init__(
revocation_list_state: Revocation list state
registration_metadata: Registration metadata
revocation_list_metadata: Revocation list metadata

TODO: update this docstring - Anoncreds-break.

"""
super().__init__(**kwargs)
self.job_id = job_id
@@ -561,9 +537,6 @@ def __init__(
revocation_list: Revocation list
resolution_metadata: Resolution metadata
revocation_registry_metadata: Rev Reg metadata

TODO: update this docstring - Anoncreds-break.

"""
super().__init__(**kwargs)
self.revocation_list = revocation_list
14 changes: 1 addition & 13 deletions aries_cloudagent/anoncreds/models/anoncreds_schema.py
Original file line number Diff line number Diff line change
@@ -7,10 +7,7 @@
from marshmallow.validate import OneOf

from ...messaging.models.base import BaseModel, BaseModelSchema
from ...messaging.valid import (
INDY_OR_KEY_DID_EXAMPLE,
INDY_SCHEMA_ID_EXAMPLE,
)
from ...messaging.valid import INDY_OR_KEY_DID_EXAMPLE, INDY_SCHEMA_ID_EXAMPLE


class AnonCredsSchema(BaseModel):
@@ -31,9 +28,6 @@ def __init__(
attr_names: Schema Attribute Name list
name: Schema name
version: Schema version

TODO: update this docstring - Anoncreds-break.

"""
super().__init__(**kwargs)
self.issuer_id = issuer_id
@@ -106,9 +100,6 @@ def __init__(
schema_id: Schema ID
resolution_metadata: Resolution Metdata
schema_metadata: Schema Metadata

TODO: update this docstring - Anoncreds-break.

"""
super().__init__(**kwargs)
self.schema_value = schema
@@ -221,9 +212,6 @@ def __init__(
schema_state: Schema state
registration_metadata: Registration Metdata
schema_metadata: Schema Metadata

TODO: update this docstring - Anoncreds-break.

"""
super().__init__(**kwargs)
self.job_id = job_id
Loading