cubicweb/crypto.py
changeset 11767 432f87a63057
parent 11057 0b59724cb3f2
child 12567 26744ad37953
child 12615 7abe23cbfda1
equal deleted inserted replaced
11766:d8de1ac21f36 11767:432f87a63057
    14 # details.
    14 # details.
    15 #
    15 #
    16 # You should have received a copy of the GNU Lesser General Public License along
    16 # You should have received a copy of the GNU Lesser General Public License along
    17 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
    17 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
    18 """Simple cryptographic routines, based on python-crypto."""
    18 """Simple cryptographic routines, based on python-crypto."""
    19 __docformat__ = "restructuredtext en"
    19 
    20 
    20 
    21 from base64 import b64encode, b64decode
    21 from base64 import b64encode, b64decode
    22 
    22 
    23 from six.moves import cPickle as pickle
    23 from six.moves import cPickle as pickle
    24 
    24