-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
1 parent
83ae061
commit 178317e
Showing
8 changed files
with
22 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,7 +81,7 @@ <h2>Instructions</h2> | |
<h3>Copyright</h3> | ||
<div><p class="hidden"> | ||
ASN.1 JavaScript decoder<br> | ||
Copyright © 2008-2024 Lapo Luchini <a href="mailto:[email protected]?subject=ASN1js"><[email protected]></a><br> | ||
Copyright © 2008-2025 Lapo Luchini <a href="mailto:[email protected]?subject=ASN1js"><[email protected]></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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|