19 lines
323 B
Python
19 lines
323 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
# Module : config.py
|
|
# Author : bssthu
|
|
# Project : pysqlsimplecipher
|
|
# Creation date : 2016-06-03
|
|
# Description :
|
|
#
|
|
|
|
|
|
salt_mask = 0x3a
|
|
key_sz = 32
|
|
key_iter = 64000
|
|
hmac_key_sz = 32
|
|
hmac_key_iter = 2
|
|
page_sz = 1024
|
|
iv_sz = 16
|
|
reserve_sz = 48
|
|
hmac_sz = 20
|