/** * xmlSecEncCtxReset: * @encCtx: the pointer to <enc:EncryptedData/> processing context. * * Resets @encCtx object, user settings are not touched. */ void xmlSecEncCtxReset(xmlSecEncCtxPtr encCtx) { xmlSecAssert(encCtx != NULL); xmlSecTransformCtxReset(&(encCtx->transformCtx)); xmlSecKeyInfoCtxReset(&(encCtx->keyInfoReadCtx)); xmlSecKeyInfoCtxReset(&(encCtx->keyInfoWriteCtx)); encCtx->operation = xmlSecTransformOperationNone; encCtx->result = NULL; encCtx->resultBase64Encoded = 0; encCtx->resultReplaced = 0; encCtx->encMethod = NULL; if (encCtx->replacedNodeList != NULL) { xmlFreeNodeList(encCtx->replacedNodeList); encCtx->replacedNodeList = NULL; } if(encCtx->encKey != NULL) { xmlSecKeyDestroy(encCtx->encKey); encCtx->encKey = NULL; } if(encCtx->id != NULL) { xmlFree(encCtx->id); encCtx->id = NULL; } if(encCtx->type != NULL) { xmlFree(encCtx->type); encCtx->type = NULL; } if(encCtx->mimeType != NULL) { xmlFree(encCtx->mimeType); encCtx->mimeType = NULL; } if(encCtx->encoding != NULL) { xmlFree(encCtx->encoding); encCtx->encoding = NULL; } if(encCtx->recipient != NULL) { xmlFree(encCtx->recipient); encCtx->recipient = NULL; } if(encCtx->carriedKeyName != NULL) { xmlFree(encCtx->carriedKeyName); encCtx->carriedKeyName = NULL; } encCtx->encDataNode = encCtx->encMethodNode = encCtx->keyInfoNode = encCtx->cipherValueNode = NULL; }
PyObject *xmlsec_KeyInfoCtxReset(PyObject *self, PyObject *args) { PyObject *keyInfoCtx_obj; xmlSecKeyInfoCtxPtr keyInfoCtx; if (CheckArgs(args, "O:keyInfoCtxReset")) { if (!PyArg_ParseTuple(args, "O:keyInfoCtxReset", &keyInfoCtx_obj)) return NULL; } else return NULL; keyInfoCtx = xmlSecKeyInfoCtxPtr_get(keyInfoCtx_obj); xmlSecKeyInfoCtxReset(keyInfoCtx); Py_INCREF(Py_None); return (Py_None); }