summaryrefslogtreecommitdiff
path: root/rsa
diff options
context:
space:
mode:
authorAndrey Semakin <and-semakin@ya.ru>2019-11-07 11:29:53 +0500
committerSybren A. Stüvel <sybren@stuvel.eu>2020-06-03 13:15:34 +0200
commit1473cb8599c44cffad56cecbe32c467d64f00247 (patch)
tree58eea047612a89bcd0efac9355c155fbae5b6264 /rsa
parent8ed507176f09b9c162cf4f060dab8e219c6b0d77 (diff)
downloadrsa-git-1473cb8599c44cffad56cecbe32c467d64f00247.tar.gz
Drop character encoding markers for Python 2.x
Diffstat (limited to 'rsa')
-rw-r--r--rsa/__init__.py2
-rw-r--r--rsa/_compat.py2
-rw-r--r--rsa/asn1.py2
-rw-r--r--rsa/cli.py2
-rw-r--r--rsa/common.py2
-rw-r--r--rsa/core.py2
-rw-r--r--rsa/key.py2
-rw-r--r--rsa/parallel.py2
-rw-r--r--rsa/pem.py2
-rw-r--r--rsa/pkcs1.py2
-rw-r--r--rsa/pkcs1_v2.py2
-rw-r--r--rsa/prime.py2
-rw-r--r--rsa/randnum.py2
-rw-r--r--rsa/transform.py2
-rw-r--r--rsa/util.py2
15 files changed, 0 insertions, 30 deletions
diff --git a/rsa/__init__.py b/rsa/__init__.py
index 3f928d9..3350de7 100644
--- a/rsa/__init__.py
+++ b/rsa/__init__.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
# Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/rsa/_compat.py b/rsa/_compat.py
index 46bf6fa..d9cd8d8 100644
--- a/rsa/_compat.py
+++ b/rsa/_compat.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
# Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/rsa/asn1.py b/rsa/asn1.py
index b724b8f..32b1eb4 100644
--- a/rsa/asn1.py
+++ b/rsa/asn1.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
# Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/rsa/cli.py b/rsa/cli.py
index b227a56..2bba47f 100644
--- a/rsa/cli.py
+++ b/rsa/cli.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
# Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/rsa/common.py b/rsa/common.py
index b983b98..c5b647d 100644
--- a/rsa/common.py
+++ b/rsa/common.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
# Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/rsa/core.py b/rsa/core.py
index 42f7bac..d6e146f 100644
--- a/rsa/core.py
+++ b/rsa/core.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
# Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/rsa/key.py b/rsa/key.py
index 7da0535..94a14b1 100644
--- a/rsa/key.py
+++ b/rsa/key.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
# Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/rsa/parallel.py b/rsa/parallel.py
index e81bcad..1c98442 100644
--- a/rsa/parallel.py
+++ b/rsa/parallel.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
# Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/rsa/pem.py b/rsa/pem.py
index a50a5e8..24edd90 100644
--- a/rsa/pem.py
+++ b/rsa/pem.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
# Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/rsa/pkcs1.py b/rsa/pkcs1.py
index 6378777..10ee50b 100644
--- a/rsa/pkcs1.py
+++ b/rsa/pkcs1.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
# Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/rsa/pkcs1_v2.py b/rsa/pkcs1_v2.py
index b751399..db94f87 100644
--- a/rsa/pkcs1_v2.py
+++ b/rsa/pkcs1_v2.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
# Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/rsa/prime.py b/rsa/prime.py
index dcd60dd..853aca5 100644
--- a/rsa/prime.py
+++ b/rsa/prime.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
# Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/rsa/randnum.py b/rsa/randnum.py
index e9bfc87..a5bb850 100644
--- a/rsa/randnum.py
+++ b/rsa/randnum.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
# Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/rsa/transform.py b/rsa/transform.py
index 4cd99bb..03c4a77 100644
--- a/rsa/transform.py
+++ b/rsa/transform.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
# Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/rsa/util.py b/rsa/util.py
index e0c7134..cb31c46 100644
--- a/rsa/util.py
+++ b/rsa/util.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
# Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu>
#
# Licensed under the Apache License, Version 2.0 (the "License");