1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 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 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808
extern crate libc; use api::ErrorCode; use errors::ToErrorCode; use commands::{Command, CommandExecutor}; use commands::anoncreds::AnoncredsCommand; use commands::anoncreds::issuer::IssuerCommand; use commands::anoncreds::prover::ProverCommand; use commands::anoncreds::verifier::VerifierCommand; use utils::cstring::CStringUtils; use self::libc::c_char; /// Create keys (both primary and revocation) for the given schema and signature type (currently only CL signature type is supported). /// Store the keys together with signature type and schema in a secure wallet as a claim definition. /// The claim definition in the wallet is identifying by a returned unique key. /// /// #Params /// wallet_handle: wallet handler (created by open_wallet). /// command_handle: command handle to map callback to user context. /// issuer_did: a DID of the issuer signing claim_def transaction to the Ledger /// schema_json: schema as a json /// signature_type: signature type (optional). Currently only 'CL' is supported. /// create_non_revoc: whether to request non-revocation claim. /// cb: Callback that takes command result as parameter. /// /// #Returns /// claim definition json containing information about signature type, schema and issuer's public key. /// Unique number identifying the public key in the wallet /// /// #Errors /// Common* /// Wallet* /// Anoncreds* #[no_mangle] pub extern fn sovrin_issuer_create_and_store_claim_def(command_handle: i32, wallet_handle: i32, schema_json: *const c_char, signature_type: *const c_char, create_non_revoc: bool, cb: Option<extern fn(xcommand_handle: i32, err: ErrorCode, claim_def_json: *const c_char, claim_def_uuid: *const c_char )>) -> ErrorCode { check_useful_c_str!(schema_json, ErrorCode::CommonInvalidParam3); check_useful_opt_c_str!(signature_type, ErrorCode::CommonInvalidParam4); check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam5); let result = CommandExecutor::instance() .send(Command::Anoncreds(AnoncredsCommand::Issuer(IssuerCommand::CreateAndStoreClaimDefinition( wallet_handle, schema_json, signature_type, create_non_revoc, Box::new(move |result| { let (err, claim_def_json, claim_def_uuid) = result_to_err_code_2!(result, String::new(), String::new()); let claim_def_json = CStringUtils::string_to_cstring(claim_def_json); let claim_def_uuid = CStringUtils::string_to_cstring(claim_def_uuid); cb(command_handle, err, claim_def_json.as_ptr(), claim_def_uuid.as_ptr()) }) )))); result_to_err_code!(result) } /// Create a new revocation registry for the given claim definition. /// Stores it in a secure wallet identifying by the returned key. /// /// #Params /// wallet_handle: wallet handler (created by open_wallet). /// command_handle: command handle to map callback to user context. /// issuer_did: a DID of the issuer signing revoc_reg transaction to the Ledger /// claim_def_seq_no: seq no of a public key transaction in Ledger /// max_claim_num: maximum number of claims the new registry can process. /// cb: Callback that takes command result as parameter. /// /// #Returns /// Revoc registry json /// Unique number identifying the revocation registry in the wallet /// /// #Errors /// Common* /// Wallet* /// Anoncreds* #[no_mangle] pub extern fn sovrin_issuer_create_and_store_revoc_reg(command_handle: i32, wallet_handle: i32, claim_def_seq_no: i32, max_claim_num: i32, cb: Option<extern fn(xcommand_handle: i32, err: ErrorCode, revoc_reg_json: *const c_char, revoc_reg_uuid: *const c_char )>) -> ErrorCode { check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam5); let result = CommandExecutor::instance() .send(Command::Anoncreds( AnoncredsCommand::Issuer( IssuerCommand::CreateAndStoreRevocationRegistry( wallet_handle, claim_def_seq_no, max_claim_num, Box::new(move |result| { let (err, revoc_reg_json, revoc_reg_wallet_key) = result_to_err_code_2!(result, String::new(), String::new()); let revoc_reg_json = CStringUtils::string_to_cstring(revoc_reg_json); let revoc_reg_uuid = CStringUtils::string_to_cstring(revoc_reg_wallet_key); cb(command_handle, err, revoc_reg_json.as_ptr(), revoc_reg_uuid.as_ptr()) }) )))); result_to_err_code!(result) } /// Signs a given claim for the given user by a given key (claim ef). /// The corresponding claim definition and revocation registry must be already created /// an stored into the wallet. /// /// #Params /// wallet_handle: wallet handler (created by open_wallet). /// command_handle: command handle to map callback to user context. /// claim_req_json: a claim request with a blinded secret /// from the user (returned by prover_create_and_store_claim_req). /// Also contains claim_def_seq_no and issuer_did /// Example: /// { /// "blinded_ms" : <blinded_master_secret>, /// "claim_def_seq_no" : <claim_def_seq_no>, /// "issuer_did" : <issuer_did> /// } /// claim_json: a claim containing attribute values for each of requested attribute names. /// Example: /// { /// "attr1" : ["value1", "value1_as_int"], /// "attr2" : ["value2", "value2_as_int"] /// } /// revoc_reg_seq_no: (Optional, pass -1 if revoc_reg_seq_no is absentee) seq no of a revocation registry transaction in Ledger /// user_revoc_index: index of a new user in the revocation registry (optional, pass -1 if user_revoc_index is absentee; default one is used if not provided) /// cb: Callback that takes command result as parameter. /// /// #Returns /// Revocation registry update json with a newly issued claim /// Claim json containing issued claim, and claim_def_seq_no and revoc_reg_seq_no /// used for issuance /// { /// "claim": <see claim_json above>, /// "signature": <signature>, /// "claim_def_seq_no": string, /// "revoc_reg_seq_no", string /// } /// /// #Errors /// Annoncreds* /// Common* /// Wallet* #[no_mangle] pub extern fn sovrin_issuer_create_claim(command_handle: i32, wallet_handle: i32, claim_req_json: *const c_char, claim_json: *const c_char, revoc_reg_seq_no: i32, user_revoc_index: i32, cb: Option<extern fn(xcommand_handle: i32, err: ErrorCode, revoc_reg_update_json: *const c_char, //TODO must be OPTIONAL xclaim_json: *const c_char )>) -> ErrorCode { check_useful_c_str!(claim_req_json, ErrorCode::CommonInvalidParam3); check_useful_c_str!(claim_json, ErrorCode::CommonInvalidParam4); check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam7); let revoc_reg_seq_no = if revoc_reg_seq_no != -1 {Some(revoc_reg_seq_no)} else { None }; let user_revoc_index = if user_revoc_index != -1 {Some(user_revoc_index)} else { None }; let result = CommandExecutor::instance() .send(Command::Anoncreds(AnoncredsCommand::Issuer(IssuerCommand::CreateClaim( wallet_handle, claim_req_json, claim_json, revoc_reg_seq_no, user_revoc_index, Box::new(move |result| { let (err, revoc_reg_update_json, xclaim_json) = result_to_err_code_2!(result, String::new(), String::new()); let revoc_reg_update_json = CStringUtils::string_to_cstring(revoc_reg_update_json); let xclaim_json = CStringUtils::string_to_cstring(xclaim_json); cb(command_handle, err, revoc_reg_update_json.as_ptr(), xclaim_json.as_ptr()) }) )))); result_to_err_code!(result) } /// Revokes a user identified by a revoc_id in a given revoc-registry. /// The corresponding claim definition and revocation registry must be already /// created an stored into the wallet. /// /// #Params /// wallet_handle: wallet handler (created by open_wallet). /// command_handle: command handle to map callback to user context. /// issuer_did: a DID of the issuer signing transactions to the Ledger /// claim_def_seq_no: seq no of a claim definition transaction in Ledger /// revoc_reg_seq_no: seq no of a revocation registry transaction in Ledger /// user_revoc_index: index of the user in the revocation registry /// cb: Callback that takes command result as parameter. /// /// #Returns /// Revocation registry update json with a revoked claim /// /// #Errors /// Annoncreds* /// Common* /// Wallet* #[no_mangle] pub extern fn sovrin_issuer_revoke_claim(command_handle: i32, wallet_handle: i32, claim_def_seq_no: i32, revoc_reg_seq_no: i32, user_revoc_index: i32, cb: Option<extern fn(xcommand_handle: i32, err: ErrorCode, revoc_reg_update_json: *const c_char, )>) -> ErrorCode { check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam6); let result = CommandExecutor::instance() .send(Command::Anoncreds( AnoncredsCommand::Issuer( IssuerCommand::RevokeClaim( wallet_handle, claim_def_seq_no, revoc_reg_seq_no, user_revoc_index, Box::new(move |result| { let (err, revoc_reg_update_json) = result_to_err_code_1!(result, String::new()); let revoc_reg_update_json = CStringUtils::string_to_cstring(revoc_reg_update_json); cb(command_handle, err, revoc_reg_update_json.as_ptr()) }) )))); result_to_err_code!(result) } /// Stores a claim offer from the given issuer in a secure storage. /// /// #Params /// wallet_handle: wallet handler (created by open_wallet). /// command_handle: command handle to map callback to user context. /// claim_offer_json: claim offer as a json containing information about the issuer and a claim: /// { /// "issuer_did": string, /// "claim_def_seq_no": string, /// "schema_seq_no": string /// } /// /// #Returns /// None. /// /// #Errors /// Common* /// Wallet* #[no_mangle] pub extern fn sovrin_prover_store_claim_offer(command_handle: i32, wallet_handle: i32, claim_offer_json: *const c_char, cb: Option<extern fn(xcommand_handle: i32, err: ErrorCode )>) -> ErrorCode { check_useful_c_str!(claim_offer_json, ErrorCode::CommonInvalidParam3); check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam4); let result = CommandExecutor::instance() .send(Command::Anoncreds(AnoncredsCommand::Prover(ProverCommand::StoreClaimOffer( wallet_handle, claim_offer_json, Box::new(move |result| { let err = result_to_err_code!(result); cb(command_handle, err) }) )))); result_to_err_code!(result) } /// Gets all stored claim offers (see prover_store_claim_offer). /// A filter can be specified to get claim offers for specific Issuer, claim_def or schema only. /// /// #Params /// wallet_handle: wallet handler (created by open_wallet). /// command_handle: command handle to map callback to user context. /// filter_json: optional filter to get claim offers for specific Issuer, claim_def or schema only only /// Each of the filters is optional and can be combines /// { /// "issuer_did": string, /// "claim_def_seq_no": string, /// "schema_seq_no": string /// } /// /// #Returns /// A json with a list of claim offers for the filter. /// { /// [{"issuer_did": string, /// "claim_def_seq_no": string, /// "schema_seq_no": string}] /// } /// /// #Errors /// Common* /// Wallet* #[no_mangle] pub extern fn sovrin_prover_get_claim_offers(command_handle: i32, wallet_handle: i32, filter_json: *const c_char, cb: Option<extern fn(xcommand_handle: i32, err: ErrorCode, claim_offers_json: *const c_char )>) -> ErrorCode { check_useful_c_str!(filter_json, ErrorCode::CommonInvalidParam3); check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam4); let result = CommandExecutor::instance() .send(Command::Anoncreds(AnoncredsCommand::Prover(ProverCommand::GetClaimOffers( wallet_handle, filter_json, Box::new(move |result| { let (err, claim_offers_json) = result_to_err_code_1!(result, String::new()); let claim_offers_json = CStringUtils::string_to_cstring(claim_offers_json); cb(command_handle, err, claim_offers_json.as_ptr()) }) )))); result_to_err_code!(result) } /// Creates a master secret with a given name and stores it in the wallet. /// The name must be unique. /// /// #Params /// wallet_handle: wallet handler (created by open_wallet). /// command_handle: command handle to map callback to user context. /// master_secret_name: a new master secret name /// /// #Returns /// None. /// /// #Errors /// Annoncreds* /// Common* /// Wallet* #[no_mangle] pub extern fn sovrin_prover_create_master_secret(command_handle: i32, wallet_handle: i32, master_secret_name: *const c_char, cb: Option<extern fn(xcommand_handle: i32, err: ErrorCode )>) -> ErrorCode { check_useful_c_str!(master_secret_name, ErrorCode::CommonInvalidParam3); check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam4); let result = CommandExecutor::instance() .send(Command::Anoncreds(AnoncredsCommand::Prover(ProverCommand::CreateMasterSecret( wallet_handle, master_secret_name, Box::new(move |result| { let err = result_to_err_code!(result); cb(command_handle, err) }) )))); result_to_err_code!(result) } /// Creates a clam request json for the given claim offer and stores it in a secure wallet. /// The claim offer contains the information about Issuer (DID, claim_def_seq_no), /// and the schema (schema_seq_no). /// The method gets public key and schema from the ledger, stores them in a wallet, /// and creates a blinded master secret for a master secret identified by a provided name. /// The master secret identified by the name must be already stored in the secure wallet (see prover_create_master_secret) /// The blinded master secret is a part of the claim request. /// /// #Params /// wallet_handle: wallet handler (created by open_wallet). /// command_handle: command handle to map callback to user context. /// prover_did: a DID of the prover /// claim_offer_json: claim offer as a json containing information about the issuer and a claim: /// { /// "issuer_did": string, /// "claim_def_seq_no": string, /// "schema_seq_no": string /// } /// claim_def_json: claim definition json associated with a claim_def_seq_no in the claim_offer /// master_secret_name: the name of the master secret stored in the wallet /// cb: Callback that takes command result as parameter. /// /// #Returns /// Claim request json. /// { /// "blinded_ms" : <blinded_master_secret>, /// "claim_def_seq_no" : <claim_def_seq_no>, /// "issuer_did" : <issuer_did> /// } /// /// #Errors /// Annoncreds* /// Common* /// Wallet* #[no_mangle] pub extern fn sovrin_prover_create_and_store_claim_req(command_handle: i32, wallet_handle: i32, prover_did: *const c_char, claim_offer_json: *const c_char, claim_def_json: *const c_char, master_secret_name: *const c_char, cb: Option<extern fn(xcommand_handle: i32, err: ErrorCode, claim_req_json: *const c_char )>) -> ErrorCode { check_useful_c_str!(prover_did, ErrorCode::CommonInvalidParam3); check_useful_c_str!(claim_offer_json, ErrorCode::CommonInvalidParam4); check_useful_c_str!(claim_def_json, ErrorCode::CommonInvalidParam5); check_useful_c_str!(master_secret_name, ErrorCode::CommonInvalidParam6); check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam7); let result = CommandExecutor::instance() .send(Command::Anoncreds(AnoncredsCommand::Prover(ProverCommand::CreateAndStoreClaimRequest( wallet_handle, prover_did, claim_offer_json, claim_def_json, master_secret_name, Box::new(move |result| { let (err, claim_req_json) = result_to_err_code_1!(result, String::new()); let claim_req_json = CStringUtils::string_to_cstring(claim_req_json); cb(command_handle, err, claim_req_json.as_ptr()) }) )))); result_to_err_code!(result) } /// Updates the claim by a master secret and stores in a secure wallet. /// The claim contains the information about /// claim_def_seq_no revoc_reg_seq_no (see issuer_create_claim). /// Seq_no is a sequence number of the corresponding transaction in the ledger. /// The method loads a blinded secret for this key from the wallet, /// updates the claim and stores it in a wallet. /// /// #Params /// wallet_handle: wallet handler (created by open_wallet). /// command_handle: command handle to map callback to user context. /// claims_json: claim json: /// { /// "claim": {attr1:[value, value_as_int]} /// "signature": <signature>, /// "schema_seq_no": string, /// "claim_def_seq_no": string, /// "revoc_reg_seq_no", string /// } /// cb: Callback that takes command result as parameter. /// /// #Returns /// None /// /// #Errors /// Annoncreds* /// Common* /// Wallet* #[no_mangle] pub extern fn sovrin_prover_store_claim(command_handle: i32, wallet_handle: i32, claims_json: *const c_char, cb: Option<extern fn( xcommand_handle: i32, err: ErrorCode )>) -> ErrorCode { check_useful_c_str!(claims_json, ErrorCode::CommonInvalidParam3); check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam4); let result = CommandExecutor::instance() .send(Command::Anoncreds(AnoncredsCommand::Prover(ProverCommand::StoreClaim( wallet_handle, claims_json, Box::new(move |result| { let err = result_to_err_code!(result); cb(command_handle, err) }) )))); result_to_err_code!(result) } /// Gets human readable claims according to the filter. /// If filter is NULL, then all claims are returned. /// Claims can be filtered by Issuer, claim_def and/or Schema. /// /// #Params /// wallet_handle: wallet handler (created by open_wallet). /// filter_json: filter for claims /// { /// "issuer_did": string, /// "schema_seq_no": string, /// "claim_def_seq_no": string, /// } /// cb: Callback that takes command result as parameter. /// /// #Returns /// claims json /// [{ /// "claim_uuid": <string>, /// "attrs": [{"attr_name" : "attr_value"}], /// "schema_seq_no": string, /// "claim_def_seq_no": string, /// "revoc_reg_seq_no": string, /// }] /// #Errors /// Annoncreds* /// Common* /// Wallet* #[no_mangle] pub extern fn sovrin_prover_get_claims(command_handle: i32, wallet_handle: i32, filter_json: *const c_char, cb: Option<extern fn( xcommand_handle: i32, err: ErrorCode, claims_json: *const c_char )>) -> ErrorCode { check_useful_c_str!(filter_json, ErrorCode::CommonInvalidParam3); check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam4); let result = CommandExecutor::instance() .send(Command::Anoncreds(AnoncredsCommand::Prover(ProverCommand::GetClaims( wallet_handle, filter_json, Box::new(move |result| { let (err, claims_json) = result_to_err_code_1!(result, String::new()); let claims_json = CStringUtils::string_to_cstring(claims_json); cb(command_handle, err, claims_json.as_ptr()) }) )))); result_to_err_code!(result) } /// Gets human readable claims matching the given proof request. /// /// #Params /// wallet_handle: wallet handler (created by open_wallet). /// proof_request_json: proof request json /// { /// "nonce": string, /// "requested_attr1_uuid": <attr_info>, /// "requested_attr2_uuid": <attr_info>, /// "requested_attr3_uuid": <attr_info>, /// "requested_predicate_1_uuid": <predicate_info>, /// "requested_predicate_2_uuid": <predicate_info>, /// } /// cb: Callback that takes command result as parameter. /// /// #Returns /// json with claims for the given pool request. /// Claim consists of uuid, human-readable attributes (key-value map), schema_seq_no, claim_def_seq_no and revoc_reg_seq_no. /// { /// "requested_attr1_uuid": [claim1, claim2], /// "requested_attr2_uuid": [], /// "requested_attr3_uuid": [claim3], /// "requested_predicate_1_uuid": [claim1, claim3], /// "requested_predicate_2_uuid": [claim2], /// }, where claim is /// { /// "claim_uuid": <string>, /// "attrs": [{"attr_name" : "attr_value"}], /// "schema_seq_no": string, /// "claim_def_seq_no": string, /// "revoc_reg_seq_no": string, /// } /// /// #Errors /// Annoncreds* /// Common* /// Wallet* #[no_mangle] pub extern fn sovrin_prover_get_claims_for_proof_req(command_handle: i32, wallet_handle: i32, proof_request_json: *const c_char, cb: Option<extern fn( xcommand_handle: i32, err: ErrorCode, claims_json: *const c_char )>) -> ErrorCode { check_useful_c_str!(proof_request_json, ErrorCode::CommonInvalidParam3); check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam4); let result = CommandExecutor::instance() .send(Command::Anoncreds(AnoncredsCommand::Prover(ProverCommand::GetClaimsForProofReq( wallet_handle, proof_request_json, Box::new(move |result| { let (err, claims_json) = result_to_err_code_1!(result, String::new()); let claims_json = CStringUtils::string_to_cstring(claims_json); cb(command_handle, err, claims_json.as_ptr()) }) )))); result_to_err_code!(result) } /// Creates a proof according to the given proof request /// Either a corresponding claim with optionally revealed attributes or self-attested attribute must be provided /// for each requested attribute (see sovrin_prover_get_claims_for_pool_req). /// A proof request may request multiple claims from different schemas and different issuers. /// All required schemas, public keys and revocation registries must be provided. /// The proof request also contains nonce. /// The proof contains either proof or self-attested attribute value for each requested attribute. /// /// #Params /// wallet_handle: wallet handler (created by open_wallet). /// command_handle: command handle to map callback to user context. /// proof_req_json: proof request json as come from the verifier /// { /// "nonce": string, /// "requested_attr1_uuid": <attr_info>, /// "requested_attr2_uuid": <attr_info>, /// "requested_attr3_uuid": <attr_info>, /// "requested_predicate_1_uuid": <predicate_info>, /// "requested_predicate_2_uuid": <predicate_info>, /// } /// requested_claims_json: either a claim or self-attested attribute for each requested attribute /// { /// "requested_attr1_uuid": [claim1_uuid_in_wallet, true <reveal_attr>], /// "requested_attr2_uuid": [self_attested_attribute], /// "requested_attr3_uuid": [claim2_seq_no_in_wallet, false] /// "requested_attr4_uuid": [claim2_seq_no_in_wallet, true] /// "requested_predicate_1_uuid": [claim2_seq_no_in_wallet], /// "requested_predicate_2_uuid": [claim3_seq_no_in_wallet], /// } /// schemas_jsons: all schema jsons participating in the proof request /// { /// "claim1_uuid_in_wallet": <schema1>, /// "claim2_uuid_in_wallet": <schema2>, /// "claim3_uuid_in_wallet": <schema3>, /// } /// /// claim_def_jsons: all claim definition jsons participating in the proof request /// { /// "claim1_uuid_in_wallet": <claim_def1>, /// "claim2_uuid_in_wallet": <claim_def2>, /// "claim3_uuid_in_wallet": <claim_def3>, /// } /// revoc_regs_jsons: all revocation registry jsons participating in the proof request /// { /// "claim1_uuid_in_wallet": <revoc_reg1>, /// "claim2_uuid_in_wallet": <revoc_reg2>, /// "claim3_uuid_in_wallet": <revoc_reg3>, /// } /// cb: Callback that takes command result as parameter. /// /// #Returns /// Proof json /// For each requested attribute either a proof (with optionally revealed attribute value) or /// self-attested attribute value is provided. /// Each proof is associated with a claim and corresponding schema_seq_no, claim_def_seq_no and revoc_reg_seq_no. /// There ais also aggregated proof part common for all claim proofs. /// { /// "requested": { /// "requested_attr1_id": [claim_proof1_uuid, revealed_attr1, revealed_attr1_as_int], /// "requested_attr2_id": [self_attested_attribute], /// "requested_attr3_id": [claim_proof2_uuid] /// "requested_attr4_id": [claim_proof2_uuid, revealed_attr4, revealed_attr4_as_int], /// "requested_predicate_1_uuid": [claim_proof2_uuid], /// "requested_predicate_2_uuid": [claim_proof3_uuid], /// } /// "claim_proofs": { /// "claim_proof1_uuid": [<claim_proof>, claim_def_seq_no, revoc_reg_seq_no], /// "claim_proof2_uuid": [<claim_proof>, claim_def_seq_no, revoc_reg_seq_no], /// "claim_proof3_uuid": [<claim_proof>, claim_def_seq_no, revoc_reg_seq_no] /// }, /// "aggregated_proof": <aggregated_proof> /// } /// /// #Errors /// Annoncreds* /// Common* /// Wallet* #[no_mangle] pub extern fn sovrin_prover_create_proof(command_handle: i32, wallet_handle: i32, proof_req_json: *const c_char, requested_claims_json: *const c_char, schemas_json: *const c_char, master_secret_name: *const c_char, claim_defs_json: *const c_char, revoc_regs_json: *const c_char, cb: Option<extern fn(xcommand_handle: i32, err: ErrorCode, proof_json: *const c_char)>) -> ErrorCode { check_useful_c_str!(proof_req_json, ErrorCode::CommonInvalidParam3); check_useful_c_str!(requested_claims_json, ErrorCode::CommonInvalidParam4); check_useful_c_str!(schemas_json, ErrorCode::CommonInvalidParam5); check_useful_c_str!(master_secret_name, ErrorCode::CommonInvalidParam6); check_useful_c_str!(claim_defs_json, ErrorCode::CommonInvalidParam7); check_useful_c_str!(revoc_regs_json, ErrorCode::CommonInvalidParam8); check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam9); let result = CommandExecutor::instance() .send(Command::Anoncreds(AnoncredsCommand::Prover(ProverCommand::CreateProof( wallet_handle, proof_req_json, requested_claims_json, schemas_json, master_secret_name, claim_defs_json, revoc_regs_json, Box::new(move |result| { let (err, proof_json) = result_to_err_code_1!(result, String::new()); let proof_json = CStringUtils::string_to_cstring(proof_json); cb(command_handle, err, proof_json.as_ptr()) }) )))); result_to_err_code!(result) } /// Verifies a proof (of multiple claim). /// All required schemas, public keys and revocation registries must be provided. /// /// #Params /// wallet_handle: wallet handler (created by open_wallet). /// command_handle: command handle to map callback to user context. /// proof_request_json: initial proof request as sent by the verifier /// { /// "nonce": string, /// "requested_attr1_uuid": <attr_info>, /// "requested_attr2_uuid": <attr_info>, /// "requested_attr3_uuid": <attr_info>, /// "requested_predicate_1_uuid": <predicate_info>, /// "requested_predicate_2_uuid": <predicate_info>, /// } /// proof_json: proof json /// For each requested attribute either a proof (with optionally revealed attribute value) or /// self-attested attribute value is provided. /// Each proof is associated with a claim and corresponding schema_seq_no, claim_def_seq_no and revoc_reg_seq_no. /// There ais also aggregated proof part common for all claim proofs. /// { /// "requested": { /// "requested_attr1_id": [claim_proof1_uuid, revealed_attr1, revealed_attr1_as_int], /// "requested_attr2_id": [self_attested_attribute], /// "requested_attr3_id": [claim_proof2_uuid] /// "requested_attr4_id": [claim_proof2_uuid, revealed_attr4, revealed_attr4_as_int], /// "requested_predicate_1_uuid": [claim_proof2_uuid], /// "requested_predicate_2_uuid": [claim_proof3_uuid], /// } /// "claim_proofs": { /// "claim_proof1_uuid": [<claim_proof>, claim_def_seq_no, revoc_reg_seq_no], /// "claim_proof2_uuid": [<claim_proof>, claim_def_seq_no, revoc_reg_seq_no], /// "claim_proof3_uuid": [<claim_proof>, claim_def_seq_no, revoc_reg_seq_no] /// }, /// "aggregated_proof": <aggregated_proof> /// } /// schemas_jsons: all schema jsons participating in the proof /// { /// "claim_proof1_uuid": <schema>, /// "claim_proof2_uuid": <schema>, /// "claim_proof3_uuid": <schema> /// } /// claim_defs_jsons: all claim definition jsons participating in the proof /// { /// "claim_proof1_uuid": <claim_def>, /// "claim_proof2_uuid": <claim_def>, /// "claim_proof3_uuid": <claim_def> /// } /// revoc_regs_jsons: all revocation registry jsons participating in the proof /// { /// "claim_proof1_uuid": <revoc_reg>, /// "claim_proof2_uuid": <revoc_reg>, /// "claim_proof3_uuid": <revoc_reg> /// } /// cb: Callback that takes command result as parameter. /// /// #Returns /// valid: true - if signature is valid, false - otherwise /// /// #Errors /// Annoncreds* /// Common* /// Wallet* #[no_mangle] pub extern fn sovrin_verifier_verify_proof(command_handle: i32, proof_request_json: *const c_char, proof_json: *const c_char, schemas_json: *const c_char, claim_defs_jsons: *const c_char, revoc_regs_json: *const c_char, cb: Option<extern fn(xcommand_handle: i32, err: ErrorCode, valid: bool)>) -> ErrorCode { check_useful_c_str!(proof_request_json, ErrorCode::CommonInvalidParam2); check_useful_c_str!(proof_json, ErrorCode::CommonInvalidParam3); check_useful_c_str!(schemas_json, ErrorCode::CommonInvalidParam4); check_useful_c_str!(claim_defs_jsons, ErrorCode::CommonInvalidParam5); check_useful_c_str!(revoc_regs_json, ErrorCode::CommonInvalidParam6); check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam7); let result = CommandExecutor::instance() .send(Command::Anoncreds(AnoncredsCommand::Verifier(VerifierCommand::VerifyProof( proof_request_json, proof_json, schemas_json, claim_defs_jsons, revoc_regs_json, Box::new(move |result| { let (err, valid) = result_to_err_code_1!(result, false); cb(command_handle, err, valid) }) )))); result_to_err_code!(result) }