Python3 support for pysqlcipher.

pull/141/head
haxxinen 4 years ago committed by GitHub
parent 2a23299f0b
commit 2a6744a551
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -166,7 +166,7 @@ unzip | ZIP passwords | http://www.info-zip.org/
-------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------
Java | keystore files | http://www.oracle.com/technetwork/java/javase/ | 6 | Java | keystore files | http://www.oracle.com/technetwork/java/javase/ | 6 |
-------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------
pysqlcipher | SQLCipher | https://github.com/leapcode/pysqlcipher/ | 2.6.10 | pysqlcipher3 | SQLCipher | https://github.com/rigglemania/pysqlcipher3 | 1.0.3 |
-------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------
python | | http://www.python.org/ | 3.6 | python | | http://www.python.org/ | 3.6 |
-------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------
@ -4847,7 +4847,7 @@ class Keystore_pass:
# SQLCipher {{{ # SQLCipher {{{
try: try:
from pysqlcipher import dbapi2 as sqlcipher from pysqlcipher3 import dbapi2 as sqlcipher
except ImportError: except ImportError:
notfound.append('pysqlcipher') notfound.append('pysqlcipher')
@ -5047,7 +5047,7 @@ dependencies = {
'ike-scan': [('ike_enum',), 'http://www.nta-monitor.com/tools-resources/security-tools/ike-scan', '1.9'], 'ike-scan': [('ike_enum',), 'http://www.nta-monitor.com/tools-resources/security-tools/ike-scan', '1.9'],
'unzip': [('unzip_pass',), 'http://www.info-zip.org/', '6.0'], 'unzip': [('unzip_pass',), 'http://www.info-zip.org/', '6.0'],
'java': [('keystore_pass',), 'http://www.oracle.com/technetwork/java/javase/', '6'], 'java': [('keystore_pass',), 'http://www.oracle.com/technetwork/java/javase/', '6'],
'pysqlcipher': [('sqlcipher_pass',), 'https://github.com/leapcode/pysqlcipher/', '2.6.10'], 'pysqlcipher3': [('sqlcipher_pass',), 'https://github.com/rigglemania/pysqlcipher3', '1.0.3'],
'python': [('ftp_login',), 'Patator requires Python 3.6 or above and may still work on Python 2.'], 'python': [('ftp_login',), 'Patator requires Python 3.6 or above and may still work on Python 2.'],
} }
# }}} # }}}

Loading…
Cancel
Save