This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/ali/bin/python | |
# coding=utf-8 | |
'''Implements a simple database interface | |
Example 0: Create connection: | |
# Set auto commit to false | |
db = DB(False, host = 'x', user = 'x', passwd = 'x', db = 'x') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
openssl aes-256-cbc -d -a -in $1 -out $1.clear | |
echo "clear file is in $1.clear" |
NewerOlder