* Requests the encryption of the editor content for the given recipients. * @param {Array. } recipients - list of email addresses for public key lookup and encryption * @returns {Promise. } * @throws {Error} error.code = 'ENCRYPT_IN_PROGRESS' *
(recipients)
| 603 | * }); |
| 604 | */ |
| 605 | encrypt(recipients) { |
| 606 | return send('editor-encrypt', {recipients, editorId: this.editorId}); |
| 607 | } |
| 608 | |
| 609 | /** |
| 610 | * Encrypt and sign the content of the editor with the default key of the user. |
no test coverage detected