1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00

#162: remove secret store stuff, moved to own repo.

This commit is contained in:
ssallam 2018-10-01 10:19:12 +02:00
parent e4461e1be1
commit 8dd807599a
2 changed files with 0 additions and 40 deletions

View File

@ -1,22 +0,0 @@
export default class ParityClient {
constructor(url) {
this.url = url
this.web3 = null
}
signDocumentKeyId() {
return ''
}
generateDocumentKeyFromKey() {
return ''
}
encryptDocument() {
return ''
}
decryptDocument() {
return ''
}
}

View File

@ -1,18 +0,0 @@
export default class SecretStore {
constructor(url, threshold) {
this.url = url
this.threshold = threshold | 1
}
generateServerKey() {
return ''
}
storeDocumentKey() {
return ''
}
retrieveDocumentKey() {
return ''
}
}