AnonCreds module¶
This module provides Hedera AnonCreds Registry API.
Please note that only AnonCreds Verifiable Data Registry (VDR) capabilities are provided by SDK, so it's intended to be used along with actual AnonCreds implementations (such as anoncreds-rs Python wrapper).
AnonCreds Registry¶
HederaAnonCredsRegistry
¶
Anoncreds objects registry (resolver + registrar) implementation that leverage Hedera HCS as VDR.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
client
|
Client
|
Hedera Client |
required |
cache_instance
|
Cache[str, object] | None
|
Custom cache instance. If not provided, in-memory cache is used |
None
|
Source code in hiero_did_sdk_python/anoncreds/hedera_anoncreds_registry.py
48 49 50 51 52 53 54 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 89 90 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 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 |
|
get_cred_def(cred_def_id)
async
¶
Get a credential definition from the registry.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cred_def_id
|
str
|
Credential definition ID to resolve |
required |
Returns:
Name | Type | Description |
---|---|---|
object |
GetCredDefResult
|
Credential definition resolution result |
Source code in hiero_did_sdk_python/anoncreds/hedera_anoncreds_registry.py
get_rev_list(rev_reg_id, timestamp)
async
¶
Get a revocation list from the registry.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rev_reg_id
|
str
|
Revocation registry ID |
required |
timestamp
|
int
|
Timestamp to resolve revocation list for |
required |
Returns:
Name | Type | Description |
---|---|---|
object |
GetRevListResult
|
Revocation list resolution result |
Source code in hiero_did_sdk_python/anoncreds/hedera_anoncreds_registry.py
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 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 |
|
get_rev_reg_def(revocation_registry_definition_id)
async
¶
Get a revocation registry definition from the registry.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
revocation_registry_definition_id
|
str
|
Revocation registry definition ID to resolve |
required |
Returns:
Name | Type | Description |
---|---|---|
object |
GetRevRegDefResult
|
Revocation registry definition resolution result |
Source code in hiero_did_sdk_python/anoncreds/hedera_anoncreds_registry.py
get_schema(schema_id)
async
¶
Get a schema from the registry.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
schema_id
|
str
|
Schema ID to resolver |
required |
Returns:
Name | Type | Description |
---|---|---|
object |
GetSchemaResult
|
Schema resolution result |
Source code in hiero_did_sdk_python/anoncreds/hedera_anoncreds_registry.py
register_cred_def(cred_def, issuer_key_der)
async
¶
Register Credential Definition.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cred_def
|
AnonCredsCredDef
|
Credential definition object to register |
required |
issuer_key_der
|
str
|
Issuer private key encoded in DER |
required |
Returns:
Name | Type | Description |
---|---|---|
object |
RegisterCredDefResult
|
Credential definition registration result |
Source code in hiero_did_sdk_python/anoncreds/hedera_anoncreds_registry.py
register_rev_list(rev_list, issuer_key_der)
async
¶
Register Revocation list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rev_list
|
AnonCredsRevList
|
Revocation list object to register |
required |
issuer_key_der
|
str
|
Issuer private key encoded in DER |
required |
Returns: Revocation list registration result
Source code in hiero_did_sdk_python/anoncreds/hedera_anoncreds_registry.py
register_rev_reg_def(rev_reg_def, issuer_key_der)
async
¶
Register Revocation registry definition.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rev_reg_def
|
AnonCredsRevRegDef
|
Revocation registry definition object to register |
required |
issuer_key_der
|
str
|
Issuer private key encoded in DER |
required |
Returns:
Name | Type | Description |
---|---|---|
object |
RegisterRevRegDefResult
|
Revocation registry definition registration result |
Source code in hiero_did_sdk_python/anoncreds/hedera_anoncreds_registry.py
register_schema(schema, issuer_key_der)
async
¶
Register Schema.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
schema
|
AnonCredsSchema
|
Schema object to register |
required |
issuer_key_der
|
str
|
Issuer private key encoded in DER format |
required |
Returns:
Name | Type | Description |
---|---|---|
object |
RegisterSchemaResult
|
Schema registration result |
Source code in hiero_did_sdk_python/anoncreds/hedera_anoncreds_registry.py
update_rev_list(prev_list, curr_list, revoked, issuer_key_der)
async
¶
Update Revocation list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
prev_list
|
AnonCredsRevList
|
Previous Revocation list object |
required |
curr_list
|
AnonCredsRevList
|
Current Revocation list object |
required |
revoked
|
Sequence[int]
|
Revoked credential indexes |
required |
issuer_key_der
|
str
|
Issuer private key encoded in DER |
required |
Returns: Revocation list update result
Source code in hiero_did_sdk_python/anoncreds/hedera_anoncreds_registry.py
Models and types¶
AnonCredsCredDef
dataclass
¶
Bases: Serializable
Model representing AnonCreds credential definition.
Attributes:
Name | Type | Description |
---|---|---|
issuer_id |
str
|
Credential definition issuer DID |
schema_id |
str
|
Schema ID |
type_ |
str
|
Credential definition type. Only "CL" type is currently supported |
tag |
str
|
Credential definition tag |
value |
CredDefValue
|
Definition value object |
Source code in hiero_did_sdk_python/anoncreds/models/credential_definition.py
AnonCredsRevList
dataclass
¶
Bases: Serializable
Model representing AnonCreds revocation list object.
Attributes:
Name | Type | Description |
---|---|---|
issuer_id |
str
|
Revocation registry issuer DID |
rev_reg_def_id |
str
|
Revocation registry definition ID |
revocation_list |
list[int]
|
Revocation list that represents state (revoked/non-revoked) of each credential in registry, list size correspond to number of credentials that revocation registry can hold |
current_accumulator |
str
|
Current value of CL accumulator |
timestamp |
int | None
|
Timestamp associated with revocation list instance |
Source code in hiero_did_sdk_python/anoncreds/models/revocation/revocation_list.py
from_rev_reg_entries(entries, rev_reg_id, rev_reg_def, timestamp=None)
classmethod
¶
Build revocation list object from corresponding revocation registry entries.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
entries
|
list[AnonCredsRevRegEntry]
|
List of revocation registry entries to build state from |
required |
rev_reg_id
|
str
|
Revocation registry ID |
required |
rev_reg_def
|
AnonCredsRevRegDef
|
Revocation registry definition object |
required |
timestamp
|
int | None
|
Requested timestamp to associate revocation list with |
None
|
Source code in hiero_did_sdk_python/anoncreds/models/revocation/revocation_list.py
AnonCredsRevRegDef
dataclass
¶
Bases: Serializable
Model representing AnonCreds revocation registry definition.
Attributes:
Name | Type | Description |
---|---|---|
issuer_id |
str
|
Revocation registry issuer DID |
type_ |
str
|
Revocation registry type. Only "CL_ACCUM" type is currently supported |
cred_def_id |
str
|
Credential definition ID |
tag |
str
|
Revocation registry tag |
value |
RevRegDefValue
|
Definition value object |
Source code in hiero_did_sdk_python/anoncreds/models/revocation/revocation_registry_definition.py
AnonCredsRevRegEntry
dataclass
¶
Bases: Serializable
Model representing AnonCreds revocation registry entry.
Attributes:
Name | Type | Description |
---|---|---|
value |
RevRegEntryValue
|
Entry value object |
ver |
str
|
Entry version |
Source code in hiero_did_sdk_python/anoncreds/models/revocation/revocation_registry_entry.py
AnonCredsSchema
dataclass
¶
Bases: Serializable
Model representing AnonCreds schema.
Attributes:
Name | Type | Description |
---|---|---|
name |
str
|
Schema name |
issuer_id |
str
|
Schema issuer DID |
attr_names |
list[str]
|
List of schema attribute names |
version |
str
|
Schema version |
Source code in hiero_did_sdk_python/anoncreds/models/schema.py
CredDefValue
dataclass
¶
Bases: Serializable
Model representing AnonCreds credential definition value.
Attributes:
Name | Type | Description |
---|---|---|
primary |
CredDefValuePrimary
|
Credential definition primary value |
revocation |
CredDefValueRevocation | None
|
Credential definition revocation-specific value |
Source code in hiero_did_sdk_python/anoncreds/models/credential_definition.py
CredDefValuePrimary
dataclass
¶
Bases: Serializable
Model of primary credential definition value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n
|
str
|
Safe RSA-2048 number |
required |
s
|
str
|
Randomly selected quadratic residue of n |
required |
r
|
dict
|
Object that defines a CL-RSA public key fragment for each attribute in the credential |
required |
rctxt
|
str
|
Equal to s^(xrctxt), where xrctxt is a randomly selected integer between 2 and p'q'-1 |
required |
z
|
str
|
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 |
required |
Source code in hiero_did_sdk_python/anoncreds/models/credential_definition.py
CredDefValueRevocation
dataclass
¶
Bases: Serializable
Model of revocation-specific credential definition value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
g
|
str
|
Generator for the elliptic curve group G1 |
required |
g_dash
|
str
|
Generator for the elliptic curve group G2 |
required |
h
|
str
|
Elliptic curve point selected uniformly at random from G1 |
required |
h0
|
str
|
Elliptic curve point selected uniformly at random from G1 |
required |
h1
|
str
|
Elliptic curve point selected uniformly at random from G1 |
required |
h2
|
str
|
Elliptic curve point selected uniformly at random from G1 |
required |
htilde
|
str
|
Elliptic curve point selected uniformly at random from G1 |
required |
h_cap
|
str
|
Elliptic curve point selected uniformly at random from G2 |
required |
u
|
str
|
Elliptic curve point selected uniformly at random from G2 |
required |
pk
|
str
|
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 |
required |
y
|
str
|
Elliptic curve point in G2. computed as h_cap^x (in multiplicative notation), where x is from r_key above |
required |
Source code in hiero_did_sdk_python/anoncreds/models/credential_definition.py
HcsRevRegEntryMessage
dataclass
¶
Bases: HcsMessage
, AnonCredsRevRegEntry
HCS message class for submitting revocation registry entries.
Source code in hiero_did_sdk_python/anoncreds/models/revocation/revocation_registry_entry.py
RevRegDefValue
dataclass
¶
Bases: Serializable
Model representing revocation registry definition value.
Attributes:
Name | Type | Description |
---|---|---|
public_keys |
dict
|
Revocation registry public keys |
max_cred_num |
int
|
Max number of credentials which revocation state can be tracked in the registry |
tails_location |
str
|
Registry tails file location |
tails_hash |
str
|
Registry tails file hash |
Source code in hiero_did_sdk_python/anoncreds/models/revocation/revocation_registry_definition.py
RevRegDefWithHcsMetadata
dataclass
¶
Bases: Serializable
HCS specific model used to publish registry definition model along with HCS metadata.
Source code in hiero_did_sdk_python/anoncreds/models/revocation/revocation_registry_definition.py
RevRegEntryValue
dataclass
¶
Bases: Serializable
Model representing revocation registry entry value.
Attributes:
Name | Type | Description |
---|---|---|
accum |
str
|
Current CL accumulator value |
prev_accum |
str | None
|
Previous CL accumulator value |
issued |
list[int] | None
|
List of issued credential indexes |
revoked |
list[int] | None
|
List of revoked credential indexes |
Source code in hiero_did_sdk_python/anoncreds/models/revocation/revocation_registry_entry.py
CredDefState
dataclass
¶
Credential definition state model.
Attributes:
Name | Type | Description |
---|---|---|
state |
ObjectState
|
Object state |
credential_definition |
AnonCredsCredDef
|
Credential definition object |
credential_definition_id |
str | None
|
Credential definition ID |
reason |
str | None
|
Reason (relevant for operation failures) |
Source code in hiero_did_sdk_python/anoncreds/types.py
GetCredDefResult
dataclass
¶
Credential definition resolution result model.
Attributes:
Name | Type | Description |
---|---|---|
credential_definition_id |
str
|
Credential definition ID |
resolution_metadata |
dict
|
Resolution metadata |
credential_definition_metadata |
dict
|
Credential definition object metadata |
credential_definition |
AnonCredsCredDef | None
|
Credential definition object (empty if resolution is not successful) |
Source code in hiero_did_sdk_python/anoncreds/types.py
GetRevListResult
dataclass
¶
Revocation list resolution result model.
Attributes:
Name | Type | Description |
---|---|---|
revocation_registry_id |
str
|
Revocation list ID |
resolution_metadata |
dict
|
Resolution metadata |
revocation_list_metadata |
dict
|
Revocation list object metadata |
revocation_list |
AnonCredsRevList | None
|
Revocation list object (empty if resolution is not successful) |
Source code in hiero_did_sdk_python/anoncreds/types.py
GetRevRegDefResult
dataclass
¶
Revocation registry definition resolution result model.
Attributes:
Name | Type | Description |
---|---|---|
revocation_registry_definition_id |
str
|
Revocation registry definition ID |
resolution_metadata |
dict
|
Resolution metadata |
revocation_registry_definition_metadata |
dict
|
Revocation registry definition object metadata |
revocation_registry_definition |
AnonCredsRevRegDef | None
|
Revocation registry definition object (empty if resolution is not successful) |
Source code in hiero_did_sdk_python/anoncreds/types.py
GetSchemaResult
dataclass
¶
Schema resolution result model.
Attributes:
Name | Type | Description |
---|---|---|
schema_id |
str
|
Schema ID |
resolution_metadata |
dict
|
Resolution metadata |
schema_metadata |
dict
|
Schema object metadata |
schema |
AnonCredsSchema | None
|
Schema object (empty if resolution is not successful) |
Source code in hiero_did_sdk_python/anoncreds/types.py
RegisterCredDefResult
dataclass
¶
Credential definition registration result model.
Attributes:
Name | Type | Description |
---|---|---|
credential_definition_state |
CredDefState
|
Credential definition Object state |
registration_metadata |
dict
|
Registration metadata |
credential_definition_metadata |
dict
|
Credential definition object metadata |
Source code in hiero_did_sdk_python/anoncreds/types.py
RegisterRevListResult
dataclass
¶
Revocation list registration result model.
Attributes:
Name | Type | Description |
---|---|---|
revocation_list_state |
RevListState
|
Revocation list Object state |
registration_metadata |
dict
|
Registration metadata |
revocation_list_metadata |
dict
|
Revocation list object metadata |
Source code in hiero_did_sdk_python/anoncreds/types.py
RegisterRevRegDefResult
dataclass
¶
Revocation registry definition registration result model.
Attributes:
Name | Type | Description |
---|---|---|
revocation_registry_definition_state |
RevRegDefState
|
Revocation registry definition Object state |
registration_metadata |
dict
|
Registration metadata |
revocation_registry_definition_metadata |
dict
|
Revocation registry definition object metadata |
Source code in hiero_did_sdk_python/anoncreds/types.py
RegisterSchemaResult
dataclass
¶
Schema registration result model.
Attributes:
Name | Type | Description |
---|---|---|
schema_state |
SchemaState
|
Schema Object state |
registration_metadata |
dict
|
Registration metadata |
schema_metadata |
dict
|
Schema object metadata |
Source code in hiero_did_sdk_python/anoncreds/types.py
RevListState
dataclass
¶
Revocation list state model.
Attributes:
Name | Type | Description |
---|---|---|
state |
ObjectState
|
Object state |
revocation_list |
AnonCredsRevList
|
Revocation list object |
reason |
str | None
|
Reason (relevant for operation failures) |
Source code in hiero_did_sdk_python/anoncreds/types.py
RevRegDefState
dataclass
¶
Revocation registry definition state model.
Attributes:
Name | Type | Description |
---|---|---|
state |
ObjectState
|
Object state |
revocation_registry_definition |
AnonCredsRevRegDef
|
Revocation registry definition object |
revocation_registry_definition_id |
str | None
|
Revocation registry definition ID |
reason |
str | None
|
Reason (relevant for operation failures) |
Source code in hiero_did_sdk_python/anoncreds/types.py
SchemaState
dataclass
¶
Schema state model.
Attributes:
Name | Type | Description |
---|---|---|
state |
ObjectState
|
Object state |
schema |
AnonCredsSchema
|
Schema object |
schema_id |
str | None
|
Schema ID |
reason |
str | None
|
Reason (relevant for operation failures) |