From 53f7b11ce22f7d342b003183aca4411f21375593 Mon Sep 17 00:00:00 2001
From: jemimah2 <jemimah@elixxir.io>
Date: Mon, 14 Mar 2022 13:27:03 +0100
Subject: [PATCH] Add NewClientFromBackup()

---
 docusaurus-site/docs/quick-reference.md | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/docusaurus-site/docs/quick-reference.md b/docusaurus-site/docs/quick-reference.md
index 0fdd90d..5f8e809 100644
--- a/docusaurus-site/docs/quick-reference.md
+++ b/docusaurus-site/docs/quick-reference.md
@@ -112,6 +112,15 @@ func NewClient(ndfJSON, storageDir string, password []byte,
 
 `NewClient` creates client storage, generates keys, connects, and registers with the network. Note that this does not register a username/identity, but merely creates a new cryptographic identity for adding such information at a later date.
 
+### func NewClientFromBackup
+
+```go
+func NewClientFromBackup(ndfJSON, storageDir string, sessionPassword,
+        backupPassphrase []byte, backupFileContents []byte) ([]*id.ID, string, error)
+```
+
+`NewClientFromBackup` constructs a new client from an encrypted backup. The backup is decrypted using the `backupPassphrase`. On successful client creation, the function will return a JSON encoded list of the E2E partners contained in the backup and a json-encoded string containing parameters stored in the backup.
+
 ### func NewPrecannedClient
 
 ```go
-- 
GitLab