/usr/lib64/python2.6/site-packages/M2Crypto
NameSizeModeActions
PGP/-0755rm
SSL/-0755rm
ASN1.py56140644editdlrm
ASN1.pyc94620644editdlrm
ASN1.pyo90630644editdlrm
AuthCookie.py30850644editdlrm
AuthCookie.pyc53390644editdlrm
AuthCookie.pyo52750644editdlrm
BIO.py73890644editdlrm
BIO.pyc121860644editdlrm
BIO.pyo121860644editdlrm
BN.py13300644editdlrm
BN.pyc18730644editdlrm
BN.pyo18730644editdlrm
callback.py2490644editdlrm
callback.pyc4750644editdlrm
callback.pyo4750644editdlrm
DH.py23740644editdlrm
DH.pyc46810644editdlrm
DH.pyo42480644editdlrm
DSA.py140190644editdlrm
DSA.pyc174330644editdlrm
DSA.pyo168450644editdlrm
EC.py109160644editdlrm
EC.pyc132870644editdlrm
EC.pyo126830644editdlrm
Engine.py33970644editdlrm
Engine.pyc54920644editdlrm
Engine.pyo54920644editdlrm
Err.py11230644editdlrm
Err.pyc26870644editdlrm
Err.pyo26870644editdlrm
EVP.py118100644editdlrm
EVP.pyc166430644editdlrm
EVP.pyo166430644editdlrm
ftpslib.py28810644editdlrm
ftpslib.pyc39460644editdlrm
ftpslib.pyo39460644editdlrm
httpslib.py78610644editdlrm
httpslib.pyc77970644editdlrm
httpslib.pyo76990644editdlrm
m2.py7850644editdlrm
m2.pyc9630644editdlrm
m2.pyo9630644editdlrm
m2urllib.py21240644editdlrm
m2urllib.pyc21770644editdlrm
m2urllib.pyo21770644editdlrm
m2urllib2.py52690644editdlrm
m2urllib2.pyc51200644editdlrm
m2urllib2.pyo50650644editdlrm
m2xmlrpclib.py19280644editdlrm
m2xmlrpclib.pyc23180644editdlrm
m2xmlrpclib.pyo23180644editdlrm
Rand.py4880644editdlrm
Rand.pyc5830644editdlrm
Rand.pyo5830644editdlrm
RC4.py6920644editdlrm
RC4.pyc16340644editdlrm
RC4.pyo16340644editdlrm
RSA.py131280644editdlrm
RSA.pyc173930644editdlrm
RSA.pyo169910644editdlrm
SMIME.py74790644editdlrm
SMIME.pyc109550644editdlrm
SMIME.pyo106670644editdlrm
threading.py3470644editdlrm
threading.pyc7890644editdlrm
threading.pyo7890644editdlrm
util.py15880644editdlrm
util.pyc30810644editdlrm
util.pyo30810644editdlrm
X509.py346460644editdlrm
X509.pyc472710644editdlrm
X509.pyo449130644editdlrm
__init__.py14210644editdlrm
__init__.pyc19800644editdlrm
__init__.pyo19800644editdlrm
__m2crypto.so4450640644editdlrm
Edit: /usr/lib64/python2.6/site-packages/M2Crypto/Engine.py (3397B)
# vim: sts=4 sw=4 et """ M2Crypto wrapper for OpenSSL ENGINE API. Pavel Shramov IMEC MSU """ from M2Crypto import m2, EVP, X509, Err class EngineError(Exception): pass m2.engine_init(EngineError) class Engine: """Wrapper for ENGINE object.""" m2_engine_free = m2.engine_free def __init__(self, id = None, _ptr = None, _pyfree = 1): """Create new Engine from ENGINE pointer or obtain by id""" if not _ptr and not id: raise ValueError("No engine id specified") self._ptr = _ptr if not self._ptr: self._ptr = m2.engine_by_id(id) if not self._ptr: raise ValueError("Unknown engine: %s" % id) self._pyfree = _pyfree def __del__(self): if getattr(self, '_pyfree', 0): self.m2_engine_free(self._ptr) def ctrl_cmd_string(self, cmd, arg, optional = 0): """Call ENGINE_ctrl_cmd_string""" if not m2.engine_ctrl_cmd_string(self._ptr, cmd, arg, optional): raise EngineError(Err.get_error()) def get_name(self): """Return engine name""" return m2.engine_get_name(self._ptr) def get_id(self): """Return engine id""" return m2.engine_get_id(self._ptr) def set_default(self, methods = m2.ENGINE_METHOD_ALL): """Use this engine as default for methods specified in argument Possible values are bitwise OR of m2.ENGINE_METHOD_*""" return m2.engine_set_default(self._ptr, methods) def _engine_load_key(self, func, name, pin = None): """Helper function for loading keys""" ui = m2.ui_openssl() cbd = m2.engine_pkcs11_data_new(pin) try: kptr = func(self._ptr, name, ui, cbd) if not kptr: raise EngineError(Err.get_error()) key = EVP.PKey(kptr, _pyfree = 1) finally: m2.engine_pkcs11_data_free(cbd) return key def load_private_key(self, name, pin = None): """Load private key with engine methods (e.g from smartcard). If pin is not set it will be asked """ return self._engine_load_key(m2.engine_load_private_key, name, pin) def load_public_key(self, name, pin = None): """Load public key with engine methods (e.g from smartcard).""" return self._engine_load_key(m2.engine_load_public_key, name, pin) def load_certificate(self, name): """Load certificate from engine (e.g from smartcard). NOTE: This function may be not implemented by engine!""" cptr = m2.engine_load_certificate(self._ptr, name) if not cptr: raise EngineError("Certificate or card not found") return X509.X509(cptr, _pyfree = 1) def load_dynamic_engine(id, sopath): """Load and return dymanic engine from sopath and assign id to it""" m2.engine_load_dynamic() e = Engine('dynamic') e.ctrl_cmd_string("SO_PATH", sopath) e.ctrl_cmd_string("ID", id) e.ctrl_cmd_string("LIST_ADD", "1") e.ctrl_cmd_string("LOAD", None) return e def load_dynamic(): """Load dynamic engine""" m2.engine_load_dynamic() def load_openssl(): """Load openssl engine""" m2.engine_load_openssl() def cleanup(): """If you load any engines, you need to clean up after your application is finished with the engines.""" m2.engine_cleanup()