1. 2d9c5aa In base64toString, need to return the output. by Jeff Thompson · 11 years ago
  2. 0e47415 Added WireFormat class and make BinaryXmlWireFormat inherit from it. by Jeff Thompson · 11 years ago
  3. 1b415b8 Rename to BinaryXmlWireFormat.js by Jeff Thompson · 11 years ago
  4. 62daf3d Temporarily rename BinaryXmlWireFormat.js by Jeff Thompson · 11 years ago
  5. 83c4a96 Rename BinaryXMLWireFormat to BinaryXmlWireFormat by Jeff Thompson · 11 years ago
  6. 2b14c7e Initial update of comments to JSDoc format. by Jeff Thompson · 11 years ago
  7. 3ed09eb Remove commented-out "not working" code by Jeff Thompson · 11 years ago
  8. 3a09fc8 In stringtoBase64, don't escape the input, and in base64toString don't unescape the result. by Jeff Thompson · 11 years ago
  9. bc0d326 Deprecate encodeToBinaryInterest and encodeToBinaryContentObject, and use interest.encode and contentObject.encode. Make decodeHexInterest and decodeHexContentObject use the new decode. by Jeff Thompson · 11 years ago
  10. 6a65204 Fix bugs: Need to call local encodeInterest, etc, not to_ccnb. by Jeff Thompson · 11 years ago
  11. 86bcd02 Added BinaryXMLWireFormat.js and moved to_ccnb and from_ccnb into there from Interest.js and ContentObject.js. In Interest and ContentObject, added encode and decode methods which take a WireFormat object. by Jeff Thompson · 11 years ago
  12. 8023c15 In writeDateTime, only prepend a 0 if the hex string has odd length by Jeff Thompson · 12 years ago
  13. 612f255 In contentObjectToHtml, show signature DigestAlgorithm and Witness by Jeff Thompson · 12 years ago
  14. f5c5612 In findElementEnd, set this.gotElementEnd true when finished. by Jeff Thompson · 12 years ago
  15. 14afeea Rename BinaryXMLDecoder.istream to input. by Jeff Thompson · 12 years ago
  16. d4a1f86 In readBinaryElement, added argument allowNull, and use for ContentObject content. by Jeff Thompson · 12 years ago
  17. efff43b Correct comments for readBinaryElement and readBlob. by Jeff Thompson · 12 years ago
  18. 0da6561 Changed informational log messages to LOG>4. by Jeff Thompson · 12 years ago
  19. 7480aca Fix bug: peekTypeAndVal should be a prototype member, not static. by Jeff Thompson · 12 years ago
  20. 48ff28a Added var to properly declare local variables so that they don't pollute the global namespace and risk multi-threading conflicts. by Jeff Thompson · 12 years ago
  21. c3c611b Remove first definition of readAttributes which is replaced by the second one where attributes is an array. by Jeff Thompson · 12 years ago
  22. fddf90d Small bug in contentObjectToHTML() fixed by Wentao Shang · 12 years ago
  23. 882e34e Implement Merkle hash verification by Wentao Shang · 12 years ago
  24. 96978b4 In BinaryXMLEncoder, use DynamicUint8Array to dynamically allocate the encoding buffer. by Jeff Thompson · 12 years ago
  25. 942022d For this.headerBuffer, use DynamicUint8Array instead of setHeaderBuffer. by Jeff Thompson · 12 years ago
  26. 768870c Added DynamicUint8Array.js. by Jeff Thompson · 12 years ago
  27. 253cab4 In contentObjectToHtml, for the certificate, also show the public key values. by Jeff Thompson · 12 years ago
  28. 68fccd6 Added decodeSubjectPublicKeyInfo. In contentObjectToHtml, use decodeSubjectPublicKeyInfo and x509.readCertHex. by Jeff Thompson · 12 years ago
  29. ab9018d Move the functionality of sending content response into WebSocketTransport so that user's closure is simpler. by Wentao Shang · 12 years ago
  30. 36a1a25 Added shuffle. by Jeff Thompson · 12 years ago
  31. 2b740e6 Fix bug in decoding NDN packet from multiple Websocket frames by Wentao Shang · 12 years ago
  32. bd63e46 Set interest timeout with interest.interestLifetime by Wentao Shang · 12 years ago
  33. 0e291c8 Add library compressing tool; add onopen and onclose callback to NDN class by Wentao Shang · 12 years ago
  34. 8dfa291 Added seek(offset) and enhance to allow each call to findElementEnd to not need access to the buffer from previous calls. by Jeff Thompson · 12 years ago
  35. 5e6ab9a Remove unused concatFromString. Added concatArrays. by Jeff Thompson · 12 years ago
  36. 11dc9b6 Change readBytesEndOffset to nBytesToRead so that we don't depend on offset aways increasing. by Jeff Thompson · 12 years ago
  37. b7e190b Fix bug in readStartElement, should log startTag, not startag. by Jeff Thompson · 12 years ago
  38. 40df2fa Fix bug in nonNegativeIntToBigEndian. Need to encode backwards starting from the end of the result buffer. by Jeff Thompson · 12 years ago
  39. 41ef0f9 Use var where necessary to make variables local. by Jeff Thompson · 12 years ago
  40. d24dad3 Make writeUString, encodeUString and writeElement (if content is a string) encode as utf8. by Jeff Thompson · 12 years ago
  41. 3a78259 Remove unused encodeUtf8 since we use str2rstr_utf8 from sha256.js. by Jeff Thompson · 12 years ago
  42. 146d7de Change the author from ucla-cs to Meki Cheraoui or to Jeff Thompson in a few cases. by Jeff Thompson · 12 years ago
  43. d15aa7b encodeUString, encodeTypeAndVal and encodeBlob were updated to not take the ostream argument, and to use this.ostream. This closes bug #116. by Jeff Thompson · 12 years ago
  44. adba491 Added DataUtils.stringToUtf8Array. Use in Name to encode strings as utf8. by Jeff Thompson · 12 years ago
  45. a5a2a2b In contentObjectToHtml, use Name.to_uri. by Jeff Thompson · 12 years ago
  46. 95f935b Make nonNegativeIntToBigEndian return Uint8Array. Added concatFromString. by Jeff Thompson · 12 years ago
  47. 34a585f Make toString, toNumbers and toNumbersFromString use Uint8Array instead of byte array. by Jeff Thompson · 12 years ago
  48. c92706b Use Uint8Array instead of byte array (from websocket branch). by Jeff Thompson · 12 years ago
  49. 344891b Added encodeToBinaryInterest (from websocket branch). by Jeff Thompson · 12 years ago
  50. 8b44aa1 Always check LOG before console.log (from websocket branch). by Jeff Thompson · 12 years ago
  51. e769c51 Added MimeTypes.js, based on Ubuntu /etc/mime.types, to get the contentType based on the filename extension. by Jeff Thompson · 12 years ago
  52. 84ca950 In encodeBlob, allow components of zero length. by Jeff Thompson · 12 years ago
  53. f72d7ed Remove unused variables from decodeTypeAndVal. by Jeff Thompson · 12 years ago
  54. deda95e Added bigEndianToUnsignedInt and nonNegativeIntToBigEndian. by Jeff Thompson · 12 years ago
  55. cab74c3 Define ContentDecodingException used by BinaryXMLDecoder. by Jeff Thompson · 12 years ago
  56. 158a47d Remove unused BinaryXMLCodec.js. by Jeff Thompson · 12 years ago
  57. 6444788 In contentObjectToHtml, show FinalBlockID. by Jeff Thompson · 12 years ago
  58. dad617b Added BinaryXMLStructureDecoder. Use it in NDNSocketTransportService to detect the end of the input (instead of the hack to try to decode a ContentObject). by Jeff Thompson · 12 years ago
  59. 1b19659 For internal methods, don't pass istream as an argument since we use this.istream. by Jeff Thompson · 12 years ago
  60. e6923bf Fix comment (class only used to encode ccnb). by Jeff Thompson · 12 years ago
  61. 745026e Change all ucla-cs authored files to refer to COPYING. by Jeff Thompson · 12 years ago
  62. 7495797 Added hexToRawString. by Jeff Thompson · 12 years ago
  63. a566e79 Added stringToHex by Jeff Thompson · 12 years ago
  64. c316472 Moved DateFormat.js into encoding directory. by Jeff Thompson · 12 years ago
  65. 34a2ec0 Major update: Fix bug: Rename "new Exception" to "new Error" througout the project. by Jeff Thompson · 12 years ago
  66. e85ff1d Major update: refactored the API of all classes to make attributes start with a lower case letter and rename encode=>to_ccnb() and decode()=>from_ccnb. by Jeff Thompson · 12 years ago
  67. 86aea88 Major update: refactored the API of Interest and ContentObject according to the API notes: by Jeff Thompson · 12 years ago
  68. bb97609 Added arraysEqual. by Jeff Thompson · 12 years ago
  69. cc8b3a9 Moved display code from test-encode-decode-ContentObject.html to EncodingUtils contentObjectToHtml() to allow re-use. by jeff · 12 years ago
  70. 8f17361 Security implemented + Partial publish by Meki Cherkaoui · 13 years ago
  71. b21911b More update missing by Meki Cherkaoui · 13 years ago
  72. abb973b Publish code submitted by Meki Cherkaoui · 13 years ago
  73. f441d3a First Commit after cleanup by Meki Cherkaoui · 13 years ago