From: WTShaw on 2 Apr 2010 02:40 On Apr 1, 12:03 pm, Tom St Denis <t...(a)iahu.ca> wrote: > On Apr 1, 12:37 pm, "Binary" <nos...(a)news.eternal-september.org> > wrote: > > > How to decode this string from xml file? > > > HkRNsOjrihtYb1MQkMLMA6NZgtLBiSgHpxfl7qAvTWc6cKztfFSUKwu2GdjdPWDCqVJjt3i0u3t 0t6eY2EoRV9BhFT+vFIuidbaAtgThzyF6uiryE7m//Ql+4HLuvm1uWqZKq322RP7IjkpiGm71tZ NHxWG8o7EAwd9xsyRqwO/8VXCRkWXIRuQ+z9sA1cxrSSUA+maN5TNzr0JQGc3ZhczXT3VCh2VHW gb2hPkl > > > This is encoded URL, I think. > > It's just base64 encoded. So go out and buy a copy of PGP and then > decode it. > > Tom It's not simple base64 encoded. It uses the same set of characters and the order in indeterminate. I checked it with a program off the net and mine which gave the same garbage results.
From: rossum on 2 Apr 2010 17:03 On Thu, 1 Apr 2010 19:37:38 +0300, "Binary" <nospam(a)news.eternal-september.org> wrote: >How to decode this string from xml file? > >HkRNsOjrihtYb1MQkMLMA6NZgtLBiSgHpxfl7qAvTWc6cKztfFSUKwu2GdjdPWDCqVJjt3i0u3t0t6eY2EoRV9BhFT+vFIuidbaAtgThzyF6uiryE7m//Ql+4HLuvm1uWqZKq322RP7IjkpiGm71tZNHxWG8o7EAwd9xsyRqwO/8VXCRkWXIRuQ+z9sA1cxrSSUA+maN5TNzr0JQGc3ZhczXT3VCh2VHWgb2hPkl > As others have said it is in Base64. What does it represent in the xml file? Normally I would expect Base64 in xml to be armouring some binary data. There is no point in armouring text. >This is encoded URL, I think. I doubt it, don't be fooled by the "//" in there, the Base64 of "//" does not look like "//". rossum
From: Globemaker on 2 Apr 2010 18:52 On Apr 1, 6:37 am, "Binary" <nos...(a)news.eternal-september.org> wrote: > How to decode this string from xml file? > > H I decoded the first character. It has a value of 000111. Please let me know if that is meaningful to you.
From: Maaartin on 3 Apr 2010 03:14 On Apr 2, 11:03 pm, rossum <rossu...(a)coldmail.com> wrote: > What does it represent in the xml file? Normally I would expect > Base64 in xml to be armouring some binary data. There is no point in > armouring text. Not really. If you don't know the content of the embedded text, then you must encode or escape it somehow, since it may contain the string "]]>". XML CDATA is too stupid and (unlike many other formats including JSON) provides no way for embedding an arbitrary character string,
From: Binary on 8 Apr 2010 05:50 "Globemaker" <alanfolmsbee(a)cabanova.com> wrote in message news:36943ea1-23db-4f88-bd24-ca2805a8ab34(a)q15g2000yqj.googlegroups.com... On Apr 1, 6:37 am, "Binary" <nos...(a)news.eternal-september.org> wrote: > How to decode this string from xml file? > > H I decoded the first character. It has a value of 000111. Please let me know if that is meaningful to you. ----------- this string from settings.xml file: - <Database> <DatabaseSupportEnabled>1</DatabaseSupportEnabled> <ConnectionString>HkRNsOjrihtYb1MQkMLMA6NZgtLBiSgHpxfl7qAvTWc6cKztfFSUKwu2GdjdPWDCqVJjt3i0u3t0t6eY2EoRV9BhFT+vFIuidbaAtgThzyF6uiryE7m//Ql+4HLuvm1uWqZKq322RP7IjkpiGm71t5NHxWG8o7EAwd9xsyRqwO/8VXCRkWXIRuQ+z9sA1cxrSSUA+maN5TNzr0JQGc3ZhczXT3VCh2VHWgb2hPkl</ConnectionString> </Database> - <UpdatesSettings> <UpdateURL>http://www.domain.com/kmupdate/v65/</UpdateURL> <UseProxy>1</UseProxy> <CheckWhen>0</CheckWhen> </UpdatesSettings>
First
|
Prev
|
Pages: 1 2 Prev: question about the Secure Remote Password protocol Next: Operator Protocols for using a PRF |