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
tell application "Google Chrome" | |
set aWin to window 1 | |
repeat 25 times | |
tell aWin | |
set newTab to make new tab | |
set newTab2 to make new tab | |
set newTab3 to make new tab | |
set newTab4 to make new tab | |
set newTab5 to make new tab | |
delay 2 |
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
from Crypto.Cipher import AES | |
import binascii | |
import re | |
ssn_re = re.compile(r"^\d{3}[-\ ]?\d{2}[-\ ]?\d{4}$") | |
class EncryptedSSNField(models.CharField): | |
description = _('Adds transparent encryption/decryption (AES256 using pyCrypto) for US Social Security Numbers in the database.') | |
__metaclass__ = models.SubfieldBase |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.