blob: c6f54d8cee138982d7108d83e35e4a30c92ff6f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from __future__ import absolute_import
"""Deprecated, use the util module instead.
Copyright (c) 1999-2003 Ng Pheng Siong. All rights reserved."""
import warnings
warnings.warn('Use the util module instead', DeprecationWarning)
from M2Crypto.util import genparam_callback, passphrase_callback
|