Mod sign OpenID
Last updated
Last updated
ModSignOpenID
is a module within the Veive protocol that introduces authentication and signing via OpenID Connect. OpenID Connect is an authentication standard based on OAuth 2.0 that allows users to authenticate using external identity providers. This module enables linking an OpenID account to a Veive address and validating signatures based on ID tokens issued by the provider.
OpenID Connect is a widely adopted authentication protocol supported by major providers such as Google, Microsoft, and others. This means that with a single click, users from the Web2 ecosystem can seamlessly interact with blockchain-based applications without needing to create new credentials. By leveraging OpenID Connect, Veive significantly lowers the entry barrier to blockchain adoption, making it accessible to a broader audience while ensuring security and interoperability.
ID Token: A token signed by the OpenID provider containing user authentication information.
Public Key: The OpenID provider's public key used to verify the ID token signature.
User Claims: Information about the user returned by the OpenID provider.
ModSignWebauthn
WorksRegistration:
Users register by authenticating via an OpenID provider, which generates an ID token. The register_openid_user
method stores the association between the OpenID user ID and the Veive account.
Signature Validation:
When an operation requires an OpenID signature, the verify_openid_signature
method is called to validate its authenticity. This process includes:
Decoding the ID token to extract the header
, payload
, and signature
.
Retrieving the OpenID provider's public key to validate the signature.
Verifying the ID token signature using the provider's public key
.
Checking the claims to ensure the operation is authorized by the user.
If all steps are successful, the operation is approved.