Skip to content

Commit

Permalink
Merge pull request #120 from kushaldas/licensing
Browse files Browse the repository at this point in the history
Adds SPDX License Identifier
  • Loading branch information
kushaldas authored Sep 25, 2022
2 parents 871b53b + 3e00cec commit 539abf4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ Please read the [Introduction](https://johnnycanencrypt.readthedocs.io/en/latest
Please go through the [full API documentation](https://johnnycanencrypt.readthedocs.io/en/latest/api.html) for detailed
descriptions.

## LICENSE: GPLv3+
## LICENSE: GPL-3.0-or-later

3 changes: 3 additions & 0 deletions johnnycanencrypt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-FileCopyrightText: © 2020 Kushal Das <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

import os
import shutil
import sqlite3
Expand Down
3 changes: 3 additions & 0 deletions johnnycanencrypt/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-FileCopyrightText: © 2020 Kushal Das <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

class KeyNotFoundError(Exception):
pass

Expand Down
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: © 2020 Kushal Das <[email protected]>
// SPDX-License-Identifier: GPL-3.0-or-later

use openpgp::packet::Signature;
use openpgp::KeyHandle;
use pyo3::create_exception;
Expand Down
3 changes: 3 additions & 0 deletions src/scard.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: © 2020 Kushal Das <[email protected]>
// SPDX-License-Identifier: GPL-3.0-or-later

use crate::openpgp::packet::key;
use crate::openpgp::types::SymmetricAlgorithm;
use openpgp::crypto;
Expand Down

0 comments on commit 539abf4

Please sign in to comment.