diff --git a/LICENSE b/LICENSE index f1975ff..a3452da 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -ASN.1 JavaScript decoder Copyright (c) 2008-2009 Lapo Luchini +ASN.1 JavaScript decoder Copyright (c) 2008-2013 Lapo Luchini Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/README.md b/README.md new file mode 100644 index 0000000..5eb24a8 --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +asn1js +====== + +asn1js is a JavaScript generic ASN.1 parser/decoder that can decode any valid ASN.1 DER or BER structures. + +An example page that can decode Base64-encoded (raw base64, PEM armoring and `begin-base64` are recognized) or Hex-encoded (or local files with some browsers) is included and can be used both [online on the official website](http://lapo.it/asn1js/) or [offline (ZIP file)](http://lapo.it/asn1js/asn1js.zip). + +OBJECT IDENTIFIER values are recognized using data taken from Peter Gutmann's [dumpasn1](http://www.cs.auckland.ac.nz/~pgut001/#standards) program. + +ISC license +----------- + +ASN.1 JavaScript decoder Copyright (c) 2008-2013 Lapo Luchini + +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +links +------ + +- [official website](http://lapo.it/asn1js/) +- [InDefero tracker](http://idf.lapo.it/p/asn1js/) +- [github mirror](https://github.com/lapo-luchini/asn1js) +- [Ohloh page](https://www.ohloh.net/p/asn1js) diff --git a/asn1.js b/asn1.js index 9fc98e4..481f23c 100644 --- a/asn1.js +++ b/asn1.js @@ -1,5 +1,5 @@ // ASN.1 JavaScript decoder -// Copyright (c) 2008-2009 Lapo Luchini +// Copyright (c) 2008-2013 Lapo Luchini // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/base64.js b/base64.js index 0bd38b1..7331aa8 100644 --- a/base64.js +++ b/base64.js @@ -1,5 +1,5 @@ // Base64 JavaScript decoder -// Copyright (c) 2008 Lapo Luchini +// Copyright (c) 2008-2013 Lapo Luchini // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/hex.js b/hex.js index fe091fb..6845abb 100644 --- a/hex.js +++ b/hex.js @@ -1,5 +1,5 @@ // Hex JavaScript decoder -// Copyright (c) 2008 Lapo Luchini +// Copyright (c) 2008-2013 Lapo Luchini // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/index.html b/index.html index 9f928c0..5ca721c 100644 --- a/index.html +++ b/index.html @@ -119,7 +119,7 @@

Copyright