password-store-autoloads.el (3601B)
1 ;;; password-store-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*- 2 ;; Generated by the `loaddefs-generate' function. 3 4 ;; This file is part of GNU Emacs. 5 6 ;;; Code: 7 8 (add-to-list 'load-path (or (and load-file-name (directory-file-name (file-name-directory load-file-name))) (car load-path))) 9 10 11 12 ;;; Generated autoloads from password-store.el 13 14 (autoload 'password-store-edit "password-store" "\ 15 Edit password for ENTRY. 16 17 (fn ENTRY)" t) 18 (autoload 'password-store-get "password-store" "\ 19 Return password for ENTRY. 20 21 Returns the first line of the password data. When CALLBACK is 22 non-`NIL', call CALLBACK with the first line instead. 23 24 (fn ENTRY &optional CALLBACK)") 25 (autoload 'password-store-get-field "password-store" "\ 26 Return FIELD for ENTRY. 27 FIELD is a string, for instance \"url\". When CALLBACK is 28 non-`NIL', call it with the line associated to FIELD instead. If 29 FIELD equals to symbol secret, then this function reduces to 30 `password-store-get'. 31 32 (fn ENTRY FIELD &optional CALLBACK)") 33 (autoload 'password-store-clear "password-store" "\ 34 Clear secret in the kill ring. 35 36 Optional argument FIELD, a symbol or a string, describes the 37 stored secret to clear; if nil, then set it to 'secret. Note, 38 FIELD does not affect the function logic; it is only used to 39 display the message: 40 41 (message \"Field %s cleared from kill ring and system clipboard.\" field). 42 43 (fn &optional FIELD)" t) 44 (autoload 'password-store-copy "password-store" "\ 45 Add password for ENTRY into the kill ring. 46 47 Clear previous password from the kill ring. Pointer to the kill 48 ring is stored in `password-store-kill-ring-pointer'. Password 49 is cleared after `password-store-time-before-clipboard-restore' 50 seconds. 51 52 (fn ENTRY)" t) 53 (autoload 'password-store-copy-field "password-store" "\ 54 Add FIELD for ENTRY into the kill ring. 55 56 Clear previous secret from the kill ring. Pointer to the kill 57 ring is stored in `password-store-kill-ring-pointer'. Secret 58 field is cleared after 59 `password-store-time-before-clipboard-restore' seconds. If FIELD 60 equals to symbol secret, then this function reduces to 61 `password-store-copy'. 62 63 (fn ENTRY FIELD)" t) 64 (autoload 'password-store-init "password-store" "\ 65 Initialize new password store and use GPG-ID for encryption. 66 67 Separate multiple IDs with spaces. 68 69 (fn GPG-ID)" t) 70 (autoload 'password-store-insert "password-store" "\ 71 Insert a new ENTRY containing PASSWORD. 72 73 (fn ENTRY PASSWORD)" t) 74 (autoload 'password-store-generate "password-store" "\ 75 Generate a new password for ENTRY with PASSWORD-LENGTH. 76 77 Default PASSWORD-LENGTH is `password-store-password-length'. 78 79 (fn ENTRY &optional PASSWORD-LENGTH)" t) 80 (autoload 'password-store-generate-no-symbols "password-store" "\ 81 Generate a new password without symbols for ENTRY with PASSWORD-LENGTH. 82 83 Default PASSWORD-LENGTH is `password-store-password-length'. 84 85 (fn ENTRY &optional PASSWORD-LENGTH)" t) 86 (autoload 'password-store-remove "password-store" "\ 87 Remove ENTRY. 88 89 (fn ENTRY)" t) 90 (autoload 'password-store-rename "password-store" "\ 91 Rename ENTRY to NEW-ENTRY. 92 93 (fn ENTRY NEW-ENTRY)" t) 94 (autoload 'password-store-version "password-store" "\ 95 Show version of `password-store-executable'." t) 96 (autoload 'password-store-url "password-store" "\ 97 Load URL for ENTRY. 98 99 (fn ENTRY)" t) 100 (register-definition-prefixes "password-store" '("password-store-")) 101 102 ;;; End of scraped data 103 104 (provide 'password-store-autoloads) 105 106 ;; Local Variables: 107 ;; version-control: never 108 ;; no-byte-compile: t 109 ;; no-update-autoloads: t 110 ;; no-native-compile: t 111 ;; coding: utf-8-emacs-unix 112 ;; End: 113 114 ;;; password-store-autoloads.el ends here