Skip to content

Commit

Permalink
chore: update links to new specification versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nanderstabel committed Mar 12, 2024
1 parent f7dc3e7 commit d9c7c9b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions oid4vc-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ the digital, as well as in the real world.

In this library, you'll find Rust implementations for several critical DCP specifications, including:
* [OpenID for Verifiable Credential
Issuance](https://openid.bitbucket.io/connect/openid-4-verifiable-credential-issuance-1_0.html) (OpenID4VCI)
* [OpenID for Verifiable Presentations](https://openid.bitbucket.io/connect/openid-connect-self-issued-v2-1_0.html) (OpenID4VP)
* [Self-Issued OpenID Provider v2](https://openid.bitbucket.io/connect/openid-connect-self-issued-v2-1_0.html) (SIOPv2)
Issuance](https://openid.net/specs/openid-4-verifiable-credential-issuance-1_0-12.html) (OpenID4VCI)
* [OpenID for Verifiable Presentations](https://openid.net/specs/openid-4-verifiable-presentations-1_0-20.html) (OpenID4VP)
* [Self-Issued OpenID Provider v2](https://openid.net/specs/openid-connect-self-issued-v2-1_0-13.html) (SIOPv2)
4 changes: 2 additions & 2 deletions oid4vc-manager/src/servers/credential_issuer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ async fn credential<S: Storage<CFC>, CFC: CredentialFormatCollection>(
AuthBearer(access_token): AuthBearer,
Json(credential_request): Json<CredentialRequest<CFC>>,
) -> impl IntoResponse {
// TODO: The bunch of unwrap's here should be replaced with error responses as described here: https://openid.bitbucket.io/connect/openid-4-verifiable-credential-issuance-1_0.html#name-credential-error-response
// TODO: The bunch of unwrap's here should be replaced with error responses as described here: https://openid.net/specs/openid-4-verifiable-credential-issuance-1_0-13.html#name-credential-error-response.
let proof = credential_issuer_manager
.credential_issuer
.validate_proof(
Expand Down Expand Up @@ -211,7 +211,7 @@ async fn batch_credential<S: Storage<CFC>, CFC: CredentialFormatCollection>(
) -> impl IntoResponse {
let mut credential_responses = vec![];
for credential_request in batch_credential_request.credential_requests {
// TODO: The bunch of unwrap's here should be replaced with error responses as described here: https://openid.bitbucket.io/connect/openid-4-verifiable-credential-issuance-1_0.html#name-credential-error-response
// TODO: The bunch of unwrap's here should be replaced with error responses as described here: https://openid.net/specs/openid-4-verifiable-credential-issuance-1_0-13.html#name-batch-credential-error-resp.
let proof = credential_issuer_manager
.credential_issuer
.validate_proof(
Expand Down
2 changes: 1 addition & 1 deletion siopv2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Working Group](https://openid.net/wg/digital-credentials-protocols/).

| Specification | Description | Version
| -------------------| ------------------------------------------ | -------
| [SIOPv2](siopv2) | Self-Issued OpenID Provider v2 | [Editor's Draft published: 24 August 2023](https://github.com/openid/SIOPv2/blob/fb00ab840daa0cec614691b712e28c1f77ed43ea/openid-connect-self-issued-v2-1_0.md)
| [SIOPv2](siopv2) | Self-Issued OpenID Provider v2 | [Working Group Draft 13 published: 28 November 2023](https://openid.net/specs/openid-connect-self-issued-v2-1_0-13.html)

An overview of all the OpenID Digital Credentials Protocols implementation in Rust can be found [here](../README.md).

Expand Down

0 comments on commit d9c7c9b

Please sign in to comment.