forked from pcraston/pyxmlsec
-
Notifications
You must be signed in to change notification settings - Fork 4
/
templates.h
33 lines (33 loc) · 2.49 KB
/
templates.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
PyObject *xmlsec_TmplSignatureCreate(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplSignatureEnsureKeyInfo(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplSignatureAddReference(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplSignatureAddObject(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplSignatureGetSignMethodNode(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplSignatureGetC14NMethodNode(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplReferenceAddTransform(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplObjectAddSignProperties(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplObjectAddManifest(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplManifestAddReference(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplEncDataCreate (PyObject *self, PyObject *args);
PyObject *xmlsec_TmplEncDataEnsureKeyInfo(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplEncDataEnsureEncProperties(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplEncDataAddEncProperty(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplEncDataEnsureCipherValue(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplEncDataEnsureCipherReference(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplEncDataGetEncMethodNode(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplCipherReferenceAddTransform(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplReferenceListAddDataReference(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplReferenceListAddKeyReference(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplKeyInfoAddKeyName(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplKeyInfoAddKeyValue(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplKeyInfoAddX509Data(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplKeyInfoAddRetrievalMethod(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplRetrievalMethodAddTransform(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplKeyInfoAddEncryptedKey(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplTransformAddHmacOutputLength(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplTransformAddRsaOaepParam(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplTransformAddXsltStylesheet(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplTransformAddC14NInclNamespaces(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplTransformAddXPath(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplTransformAddXPath2(PyObject *self, PyObject *args);
PyObject *xmlsec_TmplTransformAddXPointer(PyObject *self, PyObject *args);