diff options
author | Maximilian Krambach <[email protected]> | 2018-09-19 15:54:59 +0000 |
---|---|---|
committer | Maximilian Krambach <[email protected]> | 2018-09-19 15:56:55 +0000 |
commit | 34be6163f6c1057e2a87705925a9d0c70e4ecf17 (patch) | |
tree | 0b2f0e5fbe3706f2c814ddfe4c788c748267f859 | |
parent | json: Remove subkey-algo from createkey command. (diff) | |
download | gpgme-34be6163f6c1057e2a87705925a9d0c70e4ecf17.tar.gz gpgme-34be6163f6c1057e2a87705925a9d0c70e4ecf17.zip |
js: add 'default-future' as createKey option
--
* src/Keyring.js: default-future can be used now for key creation as
algo.
-rw-r--r-- | lang/js/src/Keyring.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/js/src/Keyring.js b/lang/js/src/Keyring.js index eec17116..9e0a3e59 100644 --- a/lang/js/src/Keyring.js +++ b/lang/js/src/Keyring.js @@ -428,7 +428,7 @@ export class GPGME_Keyring { * documentation for details */ const supportedKeyAlgos = [ - 'default', + 'default', 'default-future', 'rsa', 'rsa2048', 'rsa3072', 'rsa4096', 'dsa', 'dsa2048', 'dsa3072', 'dsa4096', 'elg', 'elg2048', 'elg3072', 'elg4096', |