You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implementing XML signatures requires using the Decoder to read token by token but be
able to extract the raw XML behind a given CharData. The Decoder returns decoded
CharData - "hello world" and "hello world" and
"<![CDATA[hello world]]>" are all returned as "hello world".
Providing the input offset allows users of Decoder to go back to the original XML to
find the encoded version.
CL 122960043 does this.
The text was updated successfully, but these errors were encountered:
Among other things, this allows users to match the decoded
pieces with the original XML, which can be necessary for
implementing standards like XML signatures.
Fixesgolang#8484.
LGTM=bradfitz
R=bradfitz
CC=golang-codereviews
https://golang.org/cl/122960043
wheatman
pushed a commit
to wheatman/go-akaros
that referenced
this issue
Jul 9, 2018
Among other things, this allows users to match the decoded
pieces with the original XML, which can be necessary for
implementing standards like XML signatures.
Fixesgolang#8484.
LGTM=bradfitz
R=bradfitz
CC=golang-codereviews
https://golang.org/cl/122960043
The text was updated successfully, but these errors were encountered: