Skip to content

Commit

Permalink
Copyright update.
Browse files Browse the repository at this point in the history
I am removing it from single source files (but keeping it so far in the main copyright notices).

Reference:
https://daniel.haxx.se/blog/2023/01/08/copyright-without-years/
https://hynek.me/til/copyright-years/
  • Loading branch information
lapo-luchini committed Jan 1, 2025
1 parent 83ae061 commit 178317e
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 7 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ISC License

Copyright (c) 2008-2024 Lapo Luchini <[email protected]>
Copyright (c) 2008-2025 Lapo Luchini <[email protected]>

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ npx @lapo/asn1js ed25519.cer
ISC license
-----------

ASN.1 JavaScript decoder Copyright (c) 2008-2024 Lapo Luchini <[email protected]>
ASN.1 JavaScript decoder Copyright (c) 2008-2025 Lapo Luchini <[email protected]>

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.

Expand Down
2 changes: 1 addition & 1 deletion defs.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ASN.1 RFC definitions matcher
// Copyright (c) 2023-2024 Lapo Luchini <[email protected]>
// Copyright (c) 2023 Lapo Luchini <[email protected]>

// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
Expand Down
2 changes: 1 addition & 1 deletion dom.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ASN.1 JavaScript decoder
// Copyright (c) 2008-2024 Lapo Luchini <[email protected]>
// Copyright (c) 2008 Lapo Luchini <[email protected]>

// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
Expand Down
2 changes: 1 addition & 1 deletion hex.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Hex JavaScript decoder
// Copyright (c) 2008-2024 Lapo Luchini <[email protected]>
// Copyright (c) 2008 Lapo Luchini <[email protected]>

// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ <h2>Instructions</h2>
<h3>Copyright</h3>
<div><p class="hidden">
ASN.1 JavaScript decoder<br>
Copyright &copy; 2008-2024 Lapo Luchini <a href="mailto:[email protected]?subject=ASN1js">&lt;[email protected]&gt;</a><br>
Copyright &copy; 2008-2025 Lapo Luchini <a href="mailto:[email protected]?subject=ASN1js">&lt;[email protected]&gt;</a><br>
<br>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
Expand Down
2 changes: 1 addition & 1 deletion int10.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Big integer base-10 printing library
// Copyright (c) 2008-2024 Lapo Luchini <[email protected]>
// Copyright (c) 2008 Lapo Luchini <[email protected]>

// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
Expand Down
15 changes: 15 additions & 0 deletions parseRFC.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
#! /usr/bin/env node

// RFC ASN.1 definition parser
// Copyright (c) 2021 Lapo Luchini <[email protected]>

// 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.

import * as fs from 'node:fs';

const
Expand Down

0 comments on commit 178317e

Please sign in to comment.