summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNayil Mukhametshin <66028747+nlscc@users.noreply.github.com>2020-09-30 00:55:17 +0200
committerNayil Mukhametshin <66028747+nlscc@users.noreply.github.com>2020-09-30 00:55:17 +0200
commit9444d2e2574a02800cd8b492c53996bbf7d9cee3 (patch)
tree4dbab1e11c56d69468e23c604a9ab103060cc6b2
parentchange readme to reflect addition of MD5 verification (diff)
downloadsamloader-9444d2e2574a02800cd8b492c53996bbf7d9cee3.tar
samloader-9444d2e2574a02800cd8b492c53996bbf7d9cee3.tar.gz
samloader-9444d2e2574a02800cd8b492c53996bbf7d9cee3.tar.bz2
samloader-9444d2e2574a02800cd8b492c53996bbf7d9cee3.tar.lz
samloader-9444d2e2574a02800cd8b492c53996bbf7d9cee3.tar.xz
samloader-9444d2e2574a02800cd8b492c53996bbf7d9cee3.tar.zst
samloader-9444d2e2574a02800cd8b492c53996bbf7d9cee3.zip
-rw-r--r--samloader/auth.py2
-rw-r--r--samloader/crypt.py2
-rw-r--r--samloader/fusclient.py2
-rw-r--r--samloader/main.py2
-rw-r--r--samloader/request.py2
-rw-r--r--samloader/versionfetch.py2
-rw-r--r--setup.py4
7 files changed, 8 insertions, 8 deletions
diff --git a/samloader/auth.py b/samloader/auth.py
index d2c6257..2d78c76 100644
--- a/samloader/auth.py
+++ b/samloader/auth.py
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0+
-# Copyright (C) 2020 Nayil Mukhametshin
+# Copyright (C) 2020 nlscc
# FUS authentication functions (decrypting nonce, calculating auth token)
diff --git a/samloader/crypt.py b/samloader/crypt.py
index d5cf6de..b2900f9 100644
--- a/samloader/crypt.py
+++ b/samloader/crypt.py
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0+
-# Copyright (C) 2020 Nayil Mukhametshin
+# Copyright (C) 2020 nlscc
# Calculate keys and decrypt encrypted firmware packages.
diff --git a/samloader/fusclient.py b/samloader/fusclient.py
index 2acb165..5e3cd79 100644
--- a/samloader/fusclient.py
+++ b/samloader/fusclient.py
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0+
-# Copyright (C) 2020 Nayil Mukhametshin
+# Copyright (C) 2020 nlscc
# FUS request helper (automatically sign requests and update tokens)
diff --git a/samloader/main.py b/samloader/main.py
index 4d20bc9..9088e45 100644
--- a/samloader/main.py
+++ b/samloader/main.py
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0+
-# Copyright (C) 2020 Nayil Mukhametshin
+# Copyright (C) 2020 nlscc
import click
import os
diff --git a/samloader/request.py b/samloader/request.py
index 5c373ea..bb95e78 100644
--- a/samloader/request.py
+++ b/samloader/request.py
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0+
-# Copyright (C) 2020 Nayil Mukhametshin
+# Copyright (C) 2020 nlscc
# Build FUS XML requests.
diff --git a/samloader/versionfetch.py b/samloader/versionfetch.py
index 9ef1595..98200b8 100644
--- a/samloader/versionfetch.py
+++ b/samloader/versionfetch.py
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: GPL-3.0+
-# Copyright (C) 2020 Nayil Mukhametshin
+# Copyright (C) 2020 nlscc
# Get the latest firmware version for a device.
diff --git a/setup.py b/setup.py
index 51d17ac..7392e34 100644
--- a/setup.py
+++ b/setup.py
@@ -6,8 +6,8 @@ with open("README.md", "r") as fh:
setuptools.setup(
name="samloader",
version="0.1",
- author="Nayil Mukhametshin",
- author_email="me@nayilm.com",
+ author="nlscc",
+ author_email="dontsendmailhere@example.com",
description="A tool to download firmware for Samsung phones.",
long_description=long_description,
long_description_content_type="text/markdown",