diff options
author | Daniel Kahn Gillmor <[email protected]> | 2018-10-18 03:56:27 +0000 |
---|---|---|
committer | Daniel Kahn Gillmor <[email protected]> | 2018-10-18 04:28:51 +0000 |
commit | 2f12427e416a0a40bf680a421f9ed20340d5bb96 (patch) | |
tree | 828d3db68c4821de11aed47ee1944af661b882b7 /lang/python/examples/howto | |
parent | js: increase default startup timeout (diff) | |
download | gpgme-2f12427e416a0a40bf680a421f9ed20340d5bb96.tar.gz gpgme-2f12427e416a0a40bf680a421f9ed20340d5bb96.zip |
doc: use https:// for www.gnu.org
--
Signed-off-by: Daniel Kahn Gillmor <[email protected]>
Diffstat (limited to 'lang/python/examples/howto')
33 files changed, 33 insertions, 33 deletions
diff --git a/lang/python/examples/howto/add-userid.py b/lang/python/examples/howto/add-userid.py index 0c7bb893..85b90de5 100755 --- a/lang/python/examples/howto/add-userid.py +++ b/lang/python/examples/howto/add-userid.py @@ -22,7 +22,7 @@ from __future__ import absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. import gpg import os.path diff --git a/lang/python/examples/howto/clear-sign-file.py b/lang/python/examples/howto/clear-sign-file.py index 9d350e25..982269c2 100755 --- a/lang/python/examples/howto/clear-sign-file.py +++ b/lang/python/examples/howto/clear-sign-file.py @@ -22,7 +22,7 @@ from __future__ import absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. import gpg import sys diff --git a/lang/python/examples/howto/create-key.py b/lang/python/examples/howto/create-key.py index 02d1cb30..f7da2069 100755 --- a/lang/python/examples/howto/create-key.py +++ b/lang/python/examples/howto/create-key.py @@ -22,7 +22,7 @@ from __future__ import absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. import gpg import os.path diff --git a/lang/python/examples/howto/decrypt-file.py b/lang/python/examples/howto/decrypt-file.py index 8eba1f25..9b06fb74 100755 --- a/lang/python/examples/howto/decrypt-file.py +++ b/lang/python/examples/howto/decrypt-file.py @@ -22,7 +22,7 @@ from __future__ import absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. import gpg import sys diff --git a/lang/python/examples/howto/detach-sign-file.py b/lang/python/examples/howto/detach-sign-file.py index a0c5a2ad..4adc2a96 100755 --- a/lang/python/examples/howto/detach-sign-file.py +++ b/lang/python/examples/howto/detach-sign-file.py @@ -22,7 +22,7 @@ from __future__ import absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. import gpg import sys diff --git a/lang/python/examples/howto/encrypt-file.py b/lang/python/examples/howto/encrypt-file.py index 8951cb5c..79987a40 100755 --- a/lang/python/examples/howto/encrypt-file.py +++ b/lang/python/examples/howto/encrypt-file.py @@ -25,7 +25,7 @@ import sys # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. """ Encrypts a file to a specified key. If entering both the key and the filename diff --git a/lang/python/examples/howto/encrypt-sign-file.py b/lang/python/examples/howto/encrypt-sign-file.py index 6610ee05..34285a9e 100755 --- a/lang/python/examples/howto/encrypt-sign-file.py +++ b/lang/python/examples/howto/encrypt-sign-file.py @@ -25,7 +25,7 @@ import sys # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. """ Signs and encrypts a file to a specified key. If entering both the key and the diff --git a/lang/python/examples/howto/encrypt-to-group-gullible.py b/lang/python/examples/howto/encrypt-to-group-gullible.py index 5ba82bcb..84921ec5 100755 --- a/lang/python/examples/howto/encrypt-to-group-gullible.py +++ b/lang/python/examples/howto/encrypt-to-group-gullible.py @@ -26,7 +26,7 @@ from groups import group_lists # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. """ Uses the groups module to encrypt to multiple recipients. diff --git a/lang/python/examples/howto/encrypt-to-group-trustno1.py b/lang/python/examples/howto/encrypt-to-group-trustno1.py index 680c9eab..32a3f683 100755 --- a/lang/python/examples/howto/encrypt-to-group-trustno1.py +++ b/lang/python/examples/howto/encrypt-to-group-trustno1.py @@ -26,7 +26,7 @@ from groups import group_lists # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. """ Uses the groups module to encrypt to multiple recipients. diff --git a/lang/python/examples/howto/encrypt-to-group.py b/lang/python/examples/howto/encrypt-to-group.py index e4ef1b6c..9fdaf48a 100755 --- a/lang/python/examples/howto/encrypt-to-group.py +++ b/lang/python/examples/howto/encrypt-to-group.py @@ -26,7 +26,7 @@ from groups import group_lists # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. """ Uses the groups module to encrypt to multiple recipients. diff --git a/lang/python/examples/howto/export-key.py b/lang/python/examples/howto/export-key.py index ff3345a7..33868065 100755 --- a/lang/python/examples/howto/export-key.py +++ b/lang/python/examples/howto/export-key.py @@ -26,7 +26,7 @@ import sys # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. print(""" This script exports one or more public keys. diff --git a/lang/python/examples/howto/export-minimised-key.py b/lang/python/examples/howto/export-minimised-key.py index ffd75248..5832c32b 100755 --- a/lang/python/examples/howto/export-minimised-key.py +++ b/lang/python/examples/howto/export-minimised-key.py @@ -26,7 +26,7 @@ import sys # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. print(""" This script exports one or more public keys in minimised form. diff --git a/lang/python/examples/howto/export-secret-key.py b/lang/python/examples/howto/export-secret-key.py index af1aa70a..eeedb84b 100755 --- a/lang/python/examples/howto/export-secret-key.py +++ b/lang/python/examples/howto/export-secret-key.py @@ -27,7 +27,7 @@ import sys # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. print(""" This script exports one or more secret keys. diff --git a/lang/python/examples/howto/export-secret-keys.py b/lang/python/examples/howto/export-secret-keys.py index f4e50085..8055e4e3 100755 --- a/lang/python/examples/howto/export-secret-keys.py +++ b/lang/python/examples/howto/export-secret-keys.py @@ -28,7 +28,7 @@ import sys # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. print(""" This script exports one or more secret keys as both ASCII armored and binary diff --git a/lang/python/examples/howto/groups.py b/lang/python/examples/howto/groups.py index 3d51b255..0418abd7 100644 --- a/lang/python/examples/howto/groups.py +++ b/lang/python/examples/howto/groups.py @@ -21,7 +21,7 @@ from __future__ import absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. import subprocess import sys diff --git a/lang/python/examples/howto/import-key.py b/lang/python/examples/howto/import-key.py index ab52ba21..6557ddc4 100755 --- a/lang/python/examples/howto/import-key.py +++ b/lang/python/examples/howto/import-key.py @@ -28,7 +28,7 @@ del absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. print(""" This script imports one or more public keys from a single file. diff --git a/lang/python/examples/howto/import-keys-hkp.py b/lang/python/examples/howto/import-keys-hkp.py index d50e465a..7d873ca4 100755 --- a/lang/python/examples/howto/import-keys-hkp.py +++ b/lang/python/examples/howto/import-keys-hkp.py @@ -26,7 +26,7 @@ import sys # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. print(""" This script imports one or more public keys from the SKS keyservers. diff --git a/lang/python/examples/howto/import-keys.py b/lang/python/examples/howto/import-keys.py index d1a268ef..a8af7150 100755 --- a/lang/python/examples/howto/import-keys.py +++ b/lang/python/examples/howto/import-keys.py @@ -26,7 +26,7 @@ import requests # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. print(""" This script imports one or more public keys from the SKS keyservers. diff --git a/lang/python/examples/howto/keycount.py b/lang/python/examples/howto/keycount.py index af472723..0c96c8a6 100755 --- a/lang/python/examples/howto/keycount.py +++ b/lang/python/examples/howto/keycount.py @@ -22,7 +22,7 @@ from __future__ import absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. import gpg diff --git a/lang/python/examples/howto/local-sign-group.py b/lang/python/examples/howto/local-sign-group.py index 0353646d..043a5a09 100755 --- a/lang/python/examples/howto/local-sign-group.py +++ b/lang/python/examples/howto/local-sign-group.py @@ -29,7 +29,7 @@ from groups import group_lists # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. print(""" This script applies a local signature or certification to every key in a group. diff --git a/lang/python/examples/howto/mutt-groups.py b/lang/python/examples/howto/mutt-groups.py index 6572a217..107619cb 100755 --- a/lang/python/examples/howto/mutt-groups.py +++ b/lang/python/examples/howto/mutt-groups.py @@ -22,7 +22,7 @@ from __future__ import absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. import sys from groups import group_lists diff --git a/lang/python/examples/howto/pmkey-import-alt.py b/lang/python/examples/howto/pmkey-import-alt.py index c7822f35..def1025f 100755 --- a/lang/python/examples/howto/pmkey-import-alt.py +++ b/lang/python/examples/howto/pmkey-import-alt.py @@ -29,7 +29,7 @@ del absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. print(""" This script searches the ProtonMail key server for the specified key and diff --git a/lang/python/examples/howto/pmkey-import-hkp-alt.py b/lang/python/examples/howto/pmkey-import-hkp-alt.py index 61fcd8d9..673fe62e 100755 --- a/lang/python/examples/howto/pmkey-import-hkp-alt.py +++ b/lang/python/examples/howto/pmkey-import-hkp-alt.py @@ -29,7 +29,7 @@ del absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. print(""" This script searches the ProtonMail key server for the specified key and diff --git a/lang/python/examples/howto/pmkey-import-hkp.py b/lang/python/examples/howto/pmkey-import-hkp.py index 66223a97..f7f62662 100755 --- a/lang/python/examples/howto/pmkey-import-hkp.py +++ b/lang/python/examples/howto/pmkey-import-hkp.py @@ -29,7 +29,7 @@ del absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. print(""" This script searches the ProtonMail key server for the specified key and diff --git a/lang/python/examples/howto/pmkey-import.py b/lang/python/examples/howto/pmkey-import.py index 58a01c8a..10d733db 100755 --- a/lang/python/examples/howto/pmkey-import.py +++ b/lang/python/examples/howto/pmkey-import.py @@ -28,7 +28,7 @@ del absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. print(""" This script searches the ProtonMail key server for the specified key and diff --git a/lang/python/examples/howto/revoke-userid.py b/lang/python/examples/howto/revoke-userid.py index be347480..ac5f6495 100755 --- a/lang/python/examples/howto/revoke-userid.py +++ b/lang/python/examples/howto/revoke-userid.py @@ -22,7 +22,7 @@ from __future__ import absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. import gpg import os.path diff --git a/lang/python/examples/howto/send-key-to-keyserver.py b/lang/python/examples/howto/send-key-to-keyserver.py index 261c8b65..d72ca9f1 100755 --- a/lang/python/examples/howto/send-key-to-keyserver.py +++ b/lang/python/examples/howto/send-key-to-keyserver.py @@ -27,7 +27,7 @@ import sys # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. print(""" This script sends one or more public keys to the SKS keyservers and is diff --git a/lang/python/examples/howto/sign-file.py b/lang/python/examples/howto/sign-file.py index f6809650..25050316 100755 --- a/lang/python/examples/howto/sign-file.py +++ b/lang/python/examples/howto/sign-file.py @@ -22,7 +22,7 @@ from __future__ import absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. import gpg import sys diff --git a/lang/python/examples/howto/sign-key.py b/lang/python/examples/howto/sign-key.py index 6d32c57d..55d517b9 100755 --- a/lang/python/examples/howto/sign-key.py +++ b/lang/python/examples/howto/sign-key.py @@ -22,7 +22,7 @@ from __future__ import absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. import gpg import os.path diff --git a/lang/python/examples/howto/symcrypt-file.py b/lang/python/examples/howto/symcrypt-file.py index bce92861..bcfe0ff4 100755 --- a/lang/python/examples/howto/symcrypt-file.py +++ b/lang/python/examples/howto/symcrypt-file.py @@ -25,7 +25,7 @@ import sys # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. """ Symmetrically encrypts a file. Passphrase will be prompted for via Pinentry. diff --git a/lang/python/examples/howto/temp-homedir-config.py b/lang/python/examples/howto/temp-homedir-config.py index 98bde367..897d2f9a 100755 --- a/lang/python/examples/howto/temp-homedir-config.py +++ b/lang/python/examples/howto/temp-homedir-config.py @@ -26,7 +26,7 @@ import sys # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. intro = """ This script creates a temporary directory to use as a homedir for diff --git a/lang/python/examples/howto/verify-signatures.py b/lang/python/examples/howto/verify-signatures.py index aa4331c2..4345be15 100755 --- a/lang/python/examples/howto/verify-signatures.py +++ b/lang/python/examples/howto/verify-signatures.py @@ -22,7 +22,7 @@ from __future__ import absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. import gpg import sys diff --git a/lang/python/examples/howto/verify-signed-file.py b/lang/python/examples/howto/verify-signed-file.py index c561fe80..18544c24 100755 --- a/lang/python/examples/howto/verify-signed-file.py +++ b/lang/python/examples/howto/verify-signed-file.py @@ -22,7 +22,7 @@ from __future__ import absolute_import, division, unicode_literals # # You should have received a copy of the GNU General Public License and the GNU # Lesser General Public along with this program; if not, see -# <http://www.gnu.org/licenses/>. +# <https://www.gnu.org/licenses/>. import gpg import sys |