diff options
author | sangwan.kwon <sangwan.kwon@samsung.com> | 2016-11-14 13:19:06 +0900 |
---|---|---|
committer | sangwan.kwon <sangwan.kwon@samsung.com> | 2016-11-17 16:26:40 +0900 |
commit | 37ef959520d171075d546e500dcd75a09f0ee507 (patch) | |
tree | 551cc91e4ff62bb0478e05f8b8f4b8945f6fc360 /include/xmlsec | |
parent | d58685dc63da77fbe88da9df7f7ec13575640263 (diff) | |
download | xmlsec1-37ef959520d171075d546e500dcd75a09f0ee507.tar.gz xmlsec1-37ef959520d171075d546e500dcd75a09f0ee507.tar.bz2 xmlsec1-37ef959520d171075d546e500dcd75a09f0ee507.zip |
Seperate proxyCtxPtr according to purpose
[ AS-IS ]
* proxyCtxPtr was used on both SKIP and CHECK references.
* It has problem when checkListAll() was called.
[ TO-BE ]
* Seperate proxyCtxPtr to skipReferences and checkReferences.
Change-Id: Ic5f0d1bd027ac0d017fe1828e4b5d22ba0861ecc
Signed-off-by: sangwan.kwon <sangwan.kwon@samsung.com>
Diffstat (limited to 'include/xmlsec')
-rw-r--r-- | include/xmlsec/xmldsig.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/xmlsec/xmldsig.h b/include/xmlsec/xmldsig.h index 21f629a4..f00780a1 100644 --- a/include/xmlsec/xmldsig.h +++ b/include/xmlsec/xmldsig.h @@ -178,7 +178,8 @@ struct _xmlSecDSigCtx { xmlSecTransformId defDigestMethodId; /* TIZEN CUTUMIZED: these data user can set before performing the operation */ - xmlSecProxyCtxPtr proxyCtxPtr; + xmlSecProxyCtxPtr skipReferences; + xmlSecProxyCtxPtr checkReferences; /* these data are returned */ xmlSecKeyPtr signKey; |