identity.ts icon indicating copy to clipboard operation
identity.ts copied to clipboard

Results 9 identity.ts issues
Sort by recently updated
recently updated
newest added

If endpoint is not reachable, VP proof function terminates with unhandled exception ``` new Proof src/VC/Proof/Proof.ts:57 ``` ![image](https://user-images.githubusercontent.com/18738760/79226755-2ec6e100-7e5f-11ea-95f1-42d25349e83d.png)

Currently used encryption library **secp256k1** generates private keys of 32 byte (256 bit) size. The length can't be increased to more secure 2048 bit size. I recommend to use [**node-rsa**](https://github.com/rzcoder/node-rsa#generate-new-512bit-length-key)...

Are you aware of this work already done: [https://github.com/TangleID/TangleID/blob/develop/did-method-spec.md](https://github.com/TangleID/TangleID/blob/develop/did-method-spec.md)

**Description** A DID is an identifier that must be able to resolve to a DID Document. This functionality already exists in the DID Document class. **Requirements** - [ ] Create...

**Description** When a DID class instance is created, [an optional fragment can be part of it.](https://w3c.github.io/did-core/#fragment) The DID Class needs to handle this. **Requirements** - [ ] Store the fragment...

**Description** When a DID class instance is created, [an optional query can be part of it](https://w3c.github.io/did-core/#query). The DID class needs to handle this. **Requirements** - [ ] Store the query...

**Description** When a DID class instance is created, [an optional path can be part of it](https://w3c.github.io/did-core/#path). The DID class needs to handle this. **Requirements** - [ ] Store the path...

Make the Identity.ts implementation completely compatible according to the [W3C DID standard.](https://w3c.github.io/did-core/) All of the required features plus a subset of deemed important optional features must be implemented. The correct...

Epic