This repository was archived by the owner on Dec 12, 2024. It is now read-only.
This repository was archived by the owner on Dec 12, 2024. It is now read-only.
Update VerifiableCredentialBuilder #400
Open
Description
The spec states that id
is optional. If present, it must be a URL, which may be dereferenced.
To better support the spec, we should update the sdk such that:
- The default ID is empty (to foster stronger privacy).
- Update the method
SetID()
, so it does validation that the parameter is a URI (using theurl.Parse
function).