Skip to content

Commit

Permalink
Merge pull request #26 from isakruas/docs/improve-readme-api-examples
Browse files Browse the repository at this point in the history
chore: updated project description
  • Loading branch information
isakruas authored Oct 26, 2024
2 parents adec074 + 41d91d8 commit a2fe35a
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v1.1.4] - 2024-10-26

### Changed
- Updated project description

## [v1.1.3] - 2024-10-26

### Changed
Expand Down
1 change: 1 addition & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Use this section to tell people about which versions of your project are current

| Version | Supported |
| ------- | ------------------ |
| 1.1.4 | :white_check_mark: |
| 1.1.3 | :white_check_mark: |
| 1.1.2 | :white_check_mark: |
| 1.1.1 | :white_check_mark: |
Expand Down
23 changes: 21 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,29 @@ build-backend = "hatchling.build"

[project]
name = "ecutils"
description = "Elliptic Curve Utils"
description = "Python Library for Elliptic Curve Cryptography: key exchanges (Diffie-Hellman, Massey-Omura), ECDSA signatures, and Koblitz encoding. Suitable for crypto education and secure systems."
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT"}
keywords = ["ecutils", "ec", "ecdh", "eck", "ecdsa", "ecmo"]
keywords = [
"ecutils",
"ec",
"ecdh",
"eck",
"ecdsa",
"ecmo",
"secure-communication",
"public-key-cryptography",
"cryptographic-algorithms",
"digital-signatures",
"python-cryptography",
"elliptic-curve-cryptography",
"diffie-hellman-key-exchange",
"ecc-based-protocols",
"message-encoding-and-decoding",
"koblitz-encoding",
"massey-omura-protocol",
"elliptic-curve-operation"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Development Status :: 6 - Mature",
Expand Down
2 changes: 1 addition & 1 deletion src/ecutils/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.3"
__version__ = "1.1.4"

0 comments on commit a2fe35a

Please sign in to comment.