File tree 1 file changed +1
-23
lines changed 1 file changed +1
-23
lines changed Original file line number Diff line number Diff line change @@ -20,33 +20,11 @@ or after you have installed `auth-source-keytar.el` in your `load-path`. Do the
20
20
21
21
``` el
22
22
(require 'auth-source-keytar)
23
- (auth-source- keytar-install)
23
+ (keytar-install)
24
24
```
25
25
26
26
## Usage
27
27
28
- List of supported API ported from [ node-keytar] ( https://www.npmjs.com/package/keytar ) .
29
-
30
- * ` auth-source-keytar-get-password `
31
- * ` auth-source-keytar-set-password `
32
- * ` auth-source-keytar-delete-password `
33
- * ` auth-source-keytar-find-credentials `
34
- * ` auth-source-keytar-find-password `
35
-
36
- * P.S. Checkout the [ node-keytar#docs] ( https://github.com/atom/node-keytar#docs ) for details*
37
-
38
- ## Examples
39
-
40
- A small example to use this library in Emacs Lisp.
41
-
42
- ``` el
43
- (auth-source-keytar-set-password "service1" "testuser" "hello") ; t
44
- (auth-source-keytar-find-credentials "service1") ; [ { account: 'testuser', password: 'hello' } ]
45
- (auth-source-keytar-find-password "service1") ; hello
46
- ```
47
-
48
- If you attempt to use ` auth-source ` then,
49
-
50
28
``` el
51
29
(auth-source-keytar-enable)
52
30
(auth-source-keytar-search :service "service1" :account "testuser")
You can’t perform that action at this time.
0 commit comments