Skip to content

Commit

Permalink
fixing credential types for validation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Hewett committed Aug 25, 2023
1 parent 0b8addf commit d7b701f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/core_types.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,11 @@ const std::array<CipherSuite::ID, 6> all_supported_ciphersuites = {
CipherSuite::ID::X448_CHACHA20POLY1305_SHA512_Ed448,
};

const std::array<CredentialType, 3> all_supported_credentials = {
const std::array<CredentialType, 4> all_supported_credentials = {
CredentialType::basic,
CredentialType::x509,
CredentialType::userinfo_vc
CredentialType::userinfo_vc,
CredentialType::multi
};

Capabilities
Expand Down

0 comments on commit d7b701f

Please sign in to comment.