0.34.0 • Published 11 months ago

@sphereon/ssi-sdk.wellknown-did-verifier v0.34.0

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
11 months ago

Warning: This package still is in very early development. Breaking changes without notice will happen at this point!


A Sphereon SSI-SDK plugin to verify relationships between the controller of an origin and a DID conforming to the DIF spec for well-known DID Configurations It is written in Typescript and can be compiled to any target JavaScript version.

Available functions

  • registerSignatureValidation
  • removeSignatureValidation
  • verifyDomainLinkage
  • verifyDidConfigurationResource

Usage

Adding the plugin to an agent:

import { IWellKnownDidVerifier, WellKnownDidVerifier } from '@sphereon/ssi-sdk.wellknown-did-verifier'

const agent = createAgent<IWellKnownDidVerifier>({
  plugins: [
    new WellKnownDidVerifier({
      signatureVerifications: { verified: () => Promise.resolve({ verified: true }) },
      onlyVerifyServiceDids: true,
    }),
  ],
})

Register signature verification callback:

Registers a callback function to be called within the verification process, to verify the signature of the credentials within the DID configuration resource.

agent
  .registerSignatureVerification({
    callbackName: 'example_key',
    signatureVerification: () => Promise.resolve({ verified: true }),
  })
  .then(() => console.log('success'))
  .catch(() => console.log('failed'))

Remove signature verification callback:

Removes a registered callback function.

agent
  .removeSignatureVerification({ callbackName: 'example_key' })
  .then(() => console.log('success'))
  .catch(() => console.log('failed'))

Verify domain linkage:

Verifies the relationship between the controller of an origin and a given DID. Option available to only verify the service DID.

agent
  .verifyDomainLinkage({
    did: 'did:key:z6MkoTHsgNNrby8JzCNQ1iRLyW5QQ6R8Xuu6AA8igGrMVPUM',
    signatureVerification: 'verified',
    onlyVerifyServiceDids: false,
  })
  .then((result: IDomainLinkageValidation) => console.log(result.status))

Verify DID configuration resource:

Verifies a DID configuration resource and domain linkage credentials it holds.

You can either pass in a DID configuration resource or fetch it remotely by setting a secure well-known location (origin). Option available to only verify a given DID.

agent
  .verifyDidConfigurationResource({
    signatureVerification: () => Promise.resolve({ verified: true }),
    origin: 'https://example.com',
    did: 'did:key:z6MkoTHsgNNrby8JzCNQ1iRLyW5QQ6R8Xuu6AA8igGrMVPUM#foo',
  })
  .then((result: IResourceValidation) => console.log(result.status))

Installation

yarn add @sphereon/ssi-sdk.wellknown-did-verifier

Build

yarn build
0.30.2-next.394

1 year ago

0.30.2-next.395

1 year ago

0.30.2-fix.364

1 year ago

0.30.2-fix.363

1 year ago

0.30.2-fix.368

1 year ago

0.30.2-fix.367

1 year ago

0.30.2-next.373

1 year ago

0.31.1-fix.4

1 year ago

0.31.1-fix.5

1 year ago

0.33.0

1 year ago

0.30.2-next.148

1 year ago

0.30.2-next.145

1 year ago

0.31.1-next.4

1 year ago

0.30.2-next.390

1 year ago

0.31.0

1 year ago

0.30.2-next.191

1 year ago

0.30.2-fix.199

1 year ago

0.30.2-fix.198

1 year ago

0.30.2-next.328

1 year ago

0.30.2-next.329

1 year ago

0.32.1-next.291

1 year ago

0.32.1-next.287

1 year ago

0.30.2-fix.395

1 year ago

0.30.2-fix.393

1 year ago

0.30.2-next.365

1 year ago

0.30.2-next.367

1 year ago

0.30.2-next.362

1 year ago

0.30.2-next.363

1 year ago

0.30.2-fix.139

1 year ago

0.30.2-fix.140

1 year ago

0.31.1-fix.20

1 year ago

0.30.2-next.276

1 year ago

0.30.2-next.279

1 year ago

0.30.2-next.273

1 year ago

0.30.2-next.275

1 year ago

0.30.2-next.281

1 year ago

0.32.0

1 year ago

0.30.2-next.285

1 year ago

0.30.2-next.259

1 year ago

0.32.1-next.113

1 year ago

0.30.2-next.269

1 year ago

0.30.2-next.267

1 year ago

0.31.1-next.44

1 year ago

0.31.1-next.42

1 year ago

0.31.1-next.41

1 year ago

0.31.1-next.39

1 year ago

0.31.1-next.33

1 year ago

0.31.1-next.32

1 year ago

0.32.1-fix.160

1 year ago

0.31.1-next.30

1 year ago

0.32.1-next.161

1 year ago

0.30.2-next.297

1 year ago

0.33.1-next.3

1 year ago

0.33.1-next.2

1 year ago

0.31.1-next.62

1 year ago

0.32.1-next.54

1 year ago

0.32.1-next.157

1 year ago

0.31.1-next.60

1 year ago

0.32.1-next.150

1 year ago

0.32.1-next.141

1 year ago

0.32.1-next.145

1 year ago

0.33.1-next.73

11 months ago

0.32.1-fix.143

1 year ago

0.32.1-fix.142

1 year ago

0.33.1-next.68

12 months ago

0.30.2-next.200

1 year ago

0.31.1-next.29

1 year ago

0.31.1-next.26

1 year ago

0.31.1-next.28

1 year ago

0.31.1-next.21

1 year ago

0.31.1-next.24

1 year ago

0.31.1-next.23

1 year ago

0.31.1-next.19

1 year ago

0.31.1-next.14

1 year ago

0.31.1-next.17

1 year ago

0.31.1-next.13

1 year ago

0.34.0

11 months ago

0.30.2-fix.278

1 year ago

0.30.2-fix.270

1 year ago

0.30.2-fix.280

1 year ago

0.30.2-next.215

1 year ago

0.30.2-next.221

1 year ago

0.30.2-next.223

1 year ago

0.30.2-fix.266

1 year ago

0.30.2-fix.265

1 year ago

0.30.2-fix.263

1 year ago

0.30.2-fix.262

1 year ago

0.32.1-fix.15

1 year ago

0.32.1-next.13

1 year ago

0.32.1-next.17

1 year ago

0.32.1-next.18

1 year ago

0.32.1-next.12

1 year ago

0.32.1-next.20

1 year ago

0.30.2-fix.138

1 year ago

0.30.2-next.133

1 year ago

0.30.2-next.135

1 year ago

0.30.2-fix.136

1 year ago

0.30.2-next.129

1 year ago

0.30.2-next.125

1 year ago

0.30.2-next.103

1 year ago

0.30.2-fix.50

1 year ago

0.30.2-fix.48

1 year ago

0.30.2-fix.49

1 year ago

0.30.2-next.58

1 year ago

0.30.2-next.66

1 year ago

0.30.2-next.47

2 years ago

0.30.2-next.4

2 years ago

0.30.2-next.5

2 years ago

0.30.2-next.6

2 years ago

0.29.1-next.185

2 years ago

0.30.1

2 years ago

0.29.1-next.175

2 years ago

0.29.1-next.174

2 years ago

0.29.1-next.177

2 years ago

0.29.1-next.176

2 years ago

0.27.1-next.20

2 years ago

0.27.1-next.24

2 years ago

0.27.1-next.25

2 years ago

0.29.1-next.80

2 years ago

0.27.1-next.28

2 years ago

0.27.1-next.29

2 years ago

0.27.1-next.26

2 years ago

0.29.1-next.82

2 years ago

0.28.1-next.51

2 years ago

0.28.1-next.50

2 years ago

0.28.1-next.53

2 years ago

0.28.1-next.52

2 years ago

0.27.1-next.31

2 years ago

0.27.1-next.33

2 years ago

0.27.1-next.39

2 years ago

0.27.1-next.38

2 years ago

0.28.1-next.48

2 years ago

0.28.1-next.49

2 years ago

0.28.1-next.44

2 years ago

0.29.1-next.5

2 years ago

0.28.1-next.40

2 years ago

0.26.1-next.6

2 years ago

0.29.1-next.4

2 years ago

0.26.1-next.4

2 years ago

0.29.1-next.2

2 years ago

0.28.1-next.41

2 years ago

0.26.1-next.140

2 years ago

0.29.1-next.61

2 years ago

0.28.1-next.60

2 years ago

0.26.1-next.129

2 years ago

0.26.1-next.127

2 years ago

0.26.1-next.131

2 years ago

0.26.1-next.132

2 years ago

0.26.1-next.115

2 years ago

0.26.1-next.113

2 years ago

0.26.1-next.108

2 years ago

0.26.1-next.106

2 years ago

0.25.0

2 years ago

0.27.1-next.8

2 years ago

0.27.1-next.9

2 years ago

0.27.1-next.6

2 years ago

0.27.1-next.7

2 years ago

0.27.1-next.4

2 years ago

0.27.1-next.2

2 years ago

0.26.0

2 years ago

0.28.1-next.11

2 years ago

0.28.1-next.10

2 years ago

0.28.1-next.13

2 years ago

0.25.1-next.118

2 years ago

0.28.1-next.39

2 years ago

0.24.0

2 years ago

0.29.0

2 years ago

0.24.1-next.98

2 years ago

0.27.0

2 years ago

0.24.1-next.42

2 years ago

0.28.0

2 years ago

0.29.1-next.122

2 years ago

0.25.1-next.29

2 years ago

0.25.1-next.28

2 years ago

0.28.1-next.9

2 years ago

0.28.1-next.5

2 years ago

0.28.1-next.6

2 years ago

0.28.1-next.8

2 years ago

0.23.5-next.24

2 years ago

0.29.1-next.104

2 years ago

0.29.1-next.103

2 years ago

0.29.1-next.47

2 years ago

0.29.1-next.46

2 years ago

0.29.1-next.106

2 years ago

0.29.1-next.105

2 years ago

0.24.1-next.100

2 years ago

0.27.1-next.10

2 years ago

0.27.1-next.12

2 years ago

0.24.1-next.113

2 years ago

0.24.1-next.112

2 years ago

0.24.1-next.118

2 years ago

0.24.1-next.116

2 years ago

0.23.5-next.22

2 years ago

0.23.5-next.12

2 years ago

0.23.5-next.11

2 years ago

0.23.5-next.10

2 years ago

0.23.1-next.7

2 years ago

0.23.3-next.3

2 years ago

0.23.4

2 years ago

0.23.2-next.4

2 years ago

0.23.1-next.2

2 years ago

0.23.0

2 years ago

0.21.2-next.25

2 years ago

0.21.2-next.23

2 years ago

0.21.2-next.8

2 years ago

0.21.2-next.7

2 years ago

0.21.2-next.6

2 years ago

0.21.2-next.17

2 years ago

0.22.0

2 years ago

0.21.1-next.8

2 years ago

0.21.1-next.4

2 years ago

0.19.1-next.125

2 years ago

0.19.1-next.126

2 years ago

0.21.0

2 years ago

0.19.1-next.119

2 years ago

0.19.1-next.135

2 years ago

0.21.1-next.2

2 years ago

0.19.1-next.117

2 years ago

0.19.1-next.113

2 years ago

0.19.1-next.114

2 years ago

0.19.1-next.115

2 years ago

0.19.1-next.116

2 years ago

0.19.1-next.111

2 years ago

0.19.1-next.112

2 years ago

0.19.1-next.105

2 years ago

0.19.1-next.110

2 years ago

0.19.1-next.106

2 years ago

0.19.1-next.108

2 years ago

0.19.1-next.109

2 years ago

0.19.1-next.98

2 years ago

0.19.1-next.99

2 years ago

0.19.1-next.102

2 years ago

0.19.1-next.100

2 years ago

0.19.1-next.101

2 years ago

0.19.1-next.96

2 years ago

0.19.1-next.75

2 years ago

0.19.1-next.2

2 years ago

0.19.1-next.24

2 years ago

0.19.0

2 years ago

0.18.2-next.96

2 years ago

0.18.2-next.95

2 years ago

0.18.2-next.94

2 years ago

0.18.2-next.92

2 years ago

0.18.2-next.58

2 years ago

0.18.2-next.62

2 years ago

0.18.2-next.77

2 years ago

0.18.2-next.57

2 years ago

0.18.2-next.47

2 years ago

0.18.2-next.15

2 years ago

0.18.2-next.17

2 years ago

0.18.2-next.14

2 years ago

0.18.2-next.12

2 years ago

0.18.2-next.9

2 years ago

0.18.2-next.3

2 years ago

0.18.1

2 years ago

0.18.1-next.8

2 years ago

0.18.1-next.3

2 years ago

0.18.1-next.2

2 years ago

0.18.1-next.4

2 years ago

0.17.6-next.61

2 years ago

0.18.0

2 years ago

0.17.6-next.58

2 years ago

0.17.6-next.57

2 years ago

0.17.6-next.56

2 years ago

0.17.6-next.52

2 years ago

0.17.2

3 years ago

0.17.3

3 years ago

0.17.4

3 years ago

0.17.5

3 years ago

0.16.1-next.3

3 years ago

0.17.0

3 years ago

0.17.1

3 years ago

0.17.2-next.2

3 years ago

0.17.2-next.4

3 years ago

0.15.2-next.96

3 years ago

0.15.2-next.95

3 years ago

0.15.2-next.97

3 years ago

0.13.1-next.3

3 years ago

0.13.1-next.4

3 years ago

0.13.1-next.5

3 years ago

0.13.1-next.6

3 years ago

0.13.1-next.7

3 years ago

0.13.1-next.8

3 years ago

0.13.1-next.32

3 years ago

0.17.1-next.2

3 years ago

0.13.1-next.33

3 years ago

0.15.0

3 years ago

0.15.1

3 years ago

0.13.1-next.17

3 years ago

0.13.1-next.14

3 years ago

0.13.1-next.15

3 years ago

0.13.1-next.10

3 years ago

0.13.1-next.18

3 years ago

0.16.0

3 years ago

0.13.1-next.27

3 years ago

0.13.1-next.28

3 years ago

0.13.1-next.25

3 years ago

0.13.1-next.26

3 years ago

0.13.1-next.23

3 years ago

0.13.1-next.24

3 years ago

0.15.1-next.2

3 years ago

0.17.3-next.2

3 years ago

0.15.2-next.39

3 years ago

0.15.2-next.32

3 years ago

0.15.2-next.33

3 years ago

0.15.2-next.113

3 years ago

0.15.2-next.110

3 years ago

0.15.2-next.111

3 years ago

0.17.6-next.7

3 years ago

0.17.6-next.6

3 years ago

0.17.6-next.9

2 years ago

0.17.6-next.3

3 years ago

0.17.6-next.2

3 years ago

0.17.6-next.5

3 years ago

0.17.6-next.4

3 years ago

0.14.2-next.28

3 years ago

0.14.2-next.27

3 years ago

0.14.2-next.29

3 years ago

0.14.2-next.23

3 years ago

0.15.2-next.103

3 years ago

0.14.2-next.26

3 years ago

0.15.2-next.104

3 years ago

0.14.2-next.25

3 years ago

0.14.0

3 years ago

0.15.2-next.109

3 years ago

0.14.1

3 years ago

0.15.2-next.124

3 years ago

0.15.2-next.121

3 years ago

0.15.2-next.29

3 years ago

0.14.2-next.18

3 years ago

0.15.2-next.116

3 years ago

0.15.2-next.117

3 years ago

0.15.2-next.114

3 years ago

0.14.2-next.14

3 years ago

0.15.2-next.118

3 years ago

0.14.2-next.40

3 years ago

0.15.2-next.4

3 years ago

0.15.2-next.5

3 years ago

0.15.2-next.6

3 years ago

0.14.2-next.49

3 years ago

0.14.2-next.45

3 years ago

0.14.2-next.48

3 years ago

0.14.2-next.47

3 years ago

0.14.2-next.42

3 years ago

0.15.2-next.77

3 years ago

0.14.2-next.43

3 years ago

0.15.2-next.101

3 years ago

0.14.2-next.39

3 years ago

0.14.2-next.38

3 years ago

0.14.1-next.2

3 years ago

0.14.2-next.35

3 years ago

0.14.2-next.34

3 years ago

0.14.2-next.37

3 years ago

0.14.2-next.36

3 years ago

0.14.2-next.31

3 years ago

0.14.2-next.30

3 years ago

0.14.2-next.33

3 years ago

0.14.2-next.32

3 years ago

0.14.2-next.51

3 years ago

0.14.2-next.50

3 years ago

0.17.6-next.16

2 years ago

0.15.2-next.3

3 years ago

0.14.2-next.58

3 years ago

0.13.0

3 years ago

0.12.1-next.21

3 years ago

0.12.1-next.20

3 years ago

0.12.1-next.19

3 years ago

0.12.0

3 years ago

0.11.1-next.154

3 years ago

0.11.1-next.153

3 years ago

0.11.1-next.152

3 years ago

0.11.1-next.162

3 years ago

0.11.1-next.151

3 years ago

0.11.1-next.150

3 years ago

0.11.1-next.149

3 years ago

0.11.1-next.148

3 years ago

0.11.1-next.147

3 years ago

0.11.1-next.146

3 years ago

0.11.1-next.145

3 years ago

0.11.1-next.144

3 years ago

0.11.1-next.142

3 years ago

0.11.1-next.141

3 years ago

0.11.1-next.140

3 years ago

0.11.1-next.131

3 years ago

0.11.1-next.112

3 years ago

0.11.1-next.106

3 years ago

0.11.1-next.72

3 years ago

0.11.1-next.70

3 years ago

0.11.1-next.65

3 years ago