diff options
Diffstat (limited to 'lang/python')
86 files changed, 87 insertions, 87 deletions
diff --git a/lang/python/Makefile.am b/lang/python/Makefile.am index 6988faf4..1c7249a4 100644 --- a/lang/python/Makefile.am +++ b/lang/python/Makefile.am @@ -14,7 +14,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. EXTRA_DIST = \ README \ diff --git a/lang/python/examples/assuan.py b/lang/python/examples/assuan.py index 6784c9eb..84f5ff0a 100644 --- a/lang/python/examples/assuan.py +++ b/lang/python/examples/assuan.py @@ -13,7 +13,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see <http://www.gnu.org/licenses/>. +# along with this program; if not, see <https://www.gnu.org/licenses/>. """Demonstrate the use of the Assuan protocol engine""" from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/examples/decryption-filter.py b/lang/python/examples/decryption-filter.py index 4d99330b..1b04184c 100644 --- a/lang/python/examples/decryption-filter.py +++ b/lang/python/examples/decryption-filter.py @@ -13,7 +13,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see <http://www.gnu.org/licenses/>. +# along with this program; if not, see <https://www.gnu.org/licenses/>. """A decryption filter This demonstrates decryption using gpg3 in three lines of code. To diff --git a/lang/python/examples/delkey.py b/lang/python/examples/delkey.py index 30b3145a..f0411f4d 100755 --- a/lang/python/examples/delkey.py +++ b/lang/python/examples/delkey.py @@ -14,7 +14,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see <http://www.gnu.org/licenses/>. +# along with this program; if not, see <https://www.gnu.org/licenses/>. # Sample of key deletion # It deletes keys for [email protected] generated by genkey.py script diff --git a/lang/python/examples/exportimport.py b/lang/python/examples/exportimport.py index 36ced579..235d5707 100755 --- a/lang/python/examples/exportimport.py +++ b/lang/python/examples/exportimport.py @@ -14,7 +14,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see <http://www.gnu.org/licenses/>. +# along with this program; if not, see <https://www.gnu.org/licenses/>. # Sample of export and import of keys # It uses keys for [email protected] generated by genkey.py script diff --git a/lang/python/examples/genkey.py b/lang/python/examples/genkey.py index 710a530a..5df6476f 100755 --- a/lang/python/examples/genkey.py +++ b/lang/python/examples/genkey.py @@ -15,7 +15,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see <http://www.gnu.org/licenses/>. +# along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals 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 diff --git a/lang/python/examples/inter-edit.py b/lang/python/examples/inter-edit.py index 5b58c97b..f11bb256 100644 --- a/lang/python/examples/inter-edit.py +++ b/lang/python/examples/inter-edit.py @@ -14,7 +14,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see <http://www.gnu.org/licenses/>. +# along with this program; if not, see <https://www.gnu.org/licenses/>. """Simple interactive editor to test editor scripts""" from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/examples/low_level-encrypt_to_all.py b/lang/python/examples/low_level-encrypt_to_all.py index 5c10d3df..edd01974 100755 --- a/lang/python/examples/low_level-encrypt_to_all.py +++ b/lang/python/examples/low_level-encrypt_to_all.py @@ -15,7 +15,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see <http://www.gnu.org/licenses/>. +# along with this program; if not, see <https://www.gnu.org/licenses/>. """ This program will try to encrypt a simple message to each key on your keyring. If your keyring has any invalid keys on it, those keys will diff --git a/lang/python/examples/sign.py b/lang/python/examples/sign.py index 5b90b4b8..079ccdef 100755 --- a/lang/python/examples/sign.py +++ b/lang/python/examples/sign.py @@ -14,7 +14,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see <http://www.gnu.org/licenses/>. +# along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/examples/signverify.py b/lang/python/examples/signverify.py index 2df72758..c9c6edd5 100755 --- a/lang/python/examples/signverify.py +++ b/lang/python/examples/signverify.py @@ -14,7 +14,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see <http://www.gnu.org/licenses/>. +# along with this program; if not, see <https://www.gnu.org/licenses/>. # Sample of unattended signing/verifying of a message. # It uses keys for [email protected] generated by genkey.py script diff --git a/lang/python/examples/simple.py b/lang/python/examples/simple.py index 17c3eba0..d2e7c07d 100755 --- a/lang/python/examples/simple.py +++ b/lang/python/examples/simple.py @@ -15,7 +15,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see <http://www.gnu.org/licenses/>. +# along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/examples/testCMSgetkey.py b/lang/python/examples/testCMSgetkey.py index f1cdb2ce..9b5a5265 100644 --- a/lang/python/examples/testCMSgetkey.py +++ b/lang/python/examples/testCMSgetkey.py @@ -14,7 +14,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see <http://www.gnu.org/licenses/>. +# along with this program; if not, see <https://www.gnu.org/licenses/>. """A test applicaton for the CMS protocol.""" from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/examples/verifydetails.py b/lang/python/examples/verifydetails.py index dc0e7d38..37334868 100755 --- a/lang/python/examples/verifydetails.py +++ b/lang/python/examples/verifydetails.py @@ -15,7 +15,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see <http://www.gnu.org/licenses/>. +# along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/private.h b/lang/python/private.h index e7b371f8..098fca01 100644 --- a/lang/python/private.h +++ b/lang/python/private.h @@ -14,7 +14,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this program; if not, see <http://www.gnu.org/licenses/>. + * License along with this program; if not, see <https://www.gnu.org/licenses/>. */ #include <gpgme.h> diff --git a/lang/python/src/constants/__init__.py b/lang/python/src/constants/__init__.py index 7a953aab..1f79f84a 100644 --- a/lang/python/src/constants/__init__.py +++ b/lang/python/src/constants/__init__.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/src/constants/create.py b/lang/python/src/constants/create.py index 382dad92..425fc0a6 100644 --- a/lang/python/src/constants/create.py +++ b/lang/python/src/constants/create.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/src/constants/keysign.py b/lang/python/src/constants/keysign.py index 328dfb91..49aafb82 100644 --- a/lang/python/src/constants/keysign.py +++ b/lang/python/src/constants/keysign.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/src/constants/sig/notation.py b/lang/python/src/constants/sig/notation.py index 9e56be39..23b394fb 100644 --- a/lang/python/src/constants/sig/notation.py +++ b/lang/python/src/constants/sig/notation.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/src/constants/tofu/__init__.py b/lang/python/src/constants/tofu/__init__.py index 5e58a6a8..8c8036bb 100644 --- a/lang/python/src/constants/tofu/__init__.py +++ b/lang/python/src/constants/tofu/__init__.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/src/constants/tofu/policy.py b/lang/python/src/constants/tofu/policy.py index 53d853de..0b172b80 100644 --- a/lang/python/src/constants/tofu/policy.py +++ b/lang/python/src/constants/tofu/policy.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/src/results.py b/lang/python/src/results.py index 6b5f63c2..49624777 100644 --- a/lang/python/src/results.py +++ b/lang/python/src/results.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals del absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/Makefile.am b/lang/python/tests/Makefile.am index d26d33de..d5b6e001 100644 --- a/lang/python/tests/Makefile.am +++ b/lang/python/tests/Makefile.am @@ -14,7 +14,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. GPG = gpg GPG_AGENT = gpg-agent diff --git a/lang/python/tests/final.py b/lang/python/tests/final.py index d0d52dc4..4deb57db 100755 --- a/lang/python/tests/final.py +++ b/lang/python/tests/final.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/initial.py b/lang/python/tests/initial.py index 30a8de7a..c94e47eb 100755 --- a/lang/python/tests/initial.py +++ b/lang/python/tests/initial.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/run-tests.py b/lang/python/tests/run-tests.py index cec13b5e..3a168f4d 100644 --- a/lang/python/tests/run-tests.py +++ b/lang/python/tests/run-tests.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, division from __future__ import print_function, unicode_literals diff --git a/lang/python/tests/support.py b/lang/python/tests/support.py index e6b3d8bb..37fdba9b 100644 --- a/lang/python/tests/support.py +++ b/lang/python/tests/support.py @@ -13,7 +13,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-callbacks.py b/lang/python/tests/t-callbacks.py index 25a1c238..5bcac237 100755 --- a/lang/python/tests/t-callbacks.py +++ b/lang/python/tests/t-callbacks.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-data.py b/lang/python/tests/t-data.py index 006c11f4..1c879f45 100755 --- a/lang/python/tests/t-data.py +++ b/lang/python/tests/t-data.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-decrypt-verify.py b/lang/python/tests/t-decrypt-verify.py index 991d18c9..a0049a02 100755 --- a/lang/python/tests/t-decrypt-verify.py +++ b/lang/python/tests/t-decrypt-verify.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-decrypt.py b/lang/python/tests/t-decrypt.py index f2417c9a..44743da7 100755 --- a/lang/python/tests/t-decrypt.py +++ b/lang/python/tests/t-decrypt.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-edit.py b/lang/python/tests/t-edit.py index cbc17d95..48a6887d 100755 --- a/lang/python/tests/t-edit.py +++ b/lang/python/tests/t-edit.py @@ -16,7 +16,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-encrypt-large.py b/lang/python/tests/t-encrypt-large.py index 18576ac3..f682e8b2 100755 --- a/lang/python/tests/t-encrypt-large.py +++ b/lang/python/tests/t-encrypt-large.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-encrypt-sign.py b/lang/python/tests/t-encrypt-sign.py index 84d1abb4..d32ed3ad 100755 --- a/lang/python/tests/t-encrypt-sign.py +++ b/lang/python/tests/t-encrypt-sign.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-encrypt-sym.py b/lang/python/tests/t-encrypt-sym.py index 9b099fe0..4389a7d4 100755 --- a/lang/python/tests/t-encrypt-sym.py +++ b/lang/python/tests/t-encrypt-sym.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-encrypt.py b/lang/python/tests/t-encrypt.py index e702daa6..0ee100d8 100755 --- a/lang/python/tests/t-encrypt.py +++ b/lang/python/tests/t-encrypt.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-export.py b/lang/python/tests/t-export.py index 6d771dd4..02474e97 100755 --- a/lang/python/tests/t-export.py +++ b/lang/python/tests/t-export.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-file-name.py b/lang/python/tests/t-file-name.py index d9c226fa..6daedb16 100755 --- a/lang/python/tests/t-file-name.py +++ b/lang/python/tests/t-file-name.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-idiomatic.py b/lang/python/tests/t-idiomatic.py index 238bbf31..36f81372 100755 --- a/lang/python/tests/t-idiomatic.py +++ b/lang/python/tests/t-idiomatic.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-import.py b/lang/python/tests/t-import.py index 82d3a4e1..c32f2d77 100755 --- a/lang/python/tests/t-import.py +++ b/lang/python/tests/t-import.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-keylist-from-data.py b/lang/python/tests/t-keylist-from-data.py index 4fd9ba08..fa6034a3 100755 --- a/lang/python/tests/t-keylist-from-data.py +++ b/lang/python/tests/t-keylist-from-data.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-keylist.py b/lang/python/tests/t-keylist.py index 9cbada5e..2aebe9a5 100755 --- a/lang/python/tests/t-keylist.py +++ b/lang/python/tests/t-keylist.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-protocol-assuan.py b/lang/python/tests/t-protocol-assuan.py index c337c3b7..e1491e0a 100755 --- a/lang/python/tests/t-protocol-assuan.py +++ b/lang/python/tests/t-protocol-assuan.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-quick-key-creation.py b/lang/python/tests/t-quick-key-creation.py index b3303fff..ca3f32ab 100755 --- a/lang/python/tests/t-quick-key-creation.py +++ b/lang/python/tests/t-quick-key-creation.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-quick-key-manipulation.py b/lang/python/tests/t-quick-key-manipulation.py index ade171e7..0cfaa9d1 100755 --- a/lang/python/tests/t-quick-key-manipulation.py +++ b/lang/python/tests/t-quick-key-manipulation.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-quick-key-signing.py b/lang/python/tests/t-quick-key-signing.py index 6f9b8a72..8a5f8c36 100755 --- a/lang/python/tests/t-quick-key-signing.py +++ b/lang/python/tests/t-quick-key-signing.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-quick-subkey-creation.py b/lang/python/tests/t-quick-subkey-creation.py index cdbb71be..2a658eaa 100755 --- a/lang/python/tests/t-quick-subkey-creation.py +++ b/lang/python/tests/t-quick-subkey-creation.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-sig-notation.py b/lang/python/tests/t-sig-notation.py index 5960f443..c3d29613 100755 --- a/lang/python/tests/t-sig-notation.py +++ b/lang/python/tests/t-sig-notation.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals @@ -32,7 +32,7 @@ expected_notations = { ("pgpmime", gpg.constants.sig.notation.HUMAN_READABLE | gpg.constants.sig.notation.CRITICAL), - None: ("http://www.gnu.org/policy/", 0), + None: ("https://www.gnu.org/policy/", 0), } # GnuPG prior to 2.1.13 did not report the critical flag correctly. diff --git a/lang/python/tests/t-sign.py b/lang/python/tests/t-sign.py index 3ad05e8e..5eefd4db 100755 --- a/lang/python/tests/t-sign.py +++ b/lang/python/tests/t-sign.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-signers.py b/lang/python/tests/t-signers.py index 119ab773..e24e5b52 100755 --- a/lang/python/tests/t-signers.py +++ b/lang/python/tests/t-signers.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-trustlist.py b/lang/python/tests/t-trustlist.py index ffa0b96d..87947042 100755 --- a/lang/python/tests/t-trustlist.py +++ b/lang/python/tests/t-trustlist.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-verify.py b/lang/python/tests/t-verify.py index 70a6c1cb..688e3ac5 100755 --- a/lang/python/tests/t-verify.py +++ b/lang/python/tests/t-verify.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-wait.py b/lang/python/tests/t-wait.py index 907f4504..8d05f254 100755 --- a/lang/python/tests/t-wait.py +++ b/lang/python/tests/t-wait.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. from __future__ import absolute_import, print_function, unicode_literals diff --git a/lang/python/tests/t-wrapper.py b/lang/python/tests/t-wrapper.py index 020e71e5..4990c5ed 100755 --- a/lang/python/tests/t-wrapper.py +++ b/lang/python/tests/t-wrapper.py @@ -15,7 +15,7 @@ # Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, see <http://www.gnu.org/licenses/>. +# License along with this program; if not, see <https://www.gnu.org/licenses/>. import gpg import support |