Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wolfmcnally/provenance
Swift implementation of the provenance marking system.
https://github.com/wolfmcnally/provenance
Last synced: 10 days ago
JSON representation
Swift implementation of the provenance marking system.
- Host: GitHub
- URL: https://github.com/wolfmcnally/provenance
- Owner: wolfmcnally
- License: mit
- Created: 2023-06-26T07:20:37.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-11T02:10:10.000Z (about 2 months ago)
- Last Synced: 2024-11-11T03:19:17.336Z (about 2 months ago)
- Language: Swift
- Size: 743 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Provenance
PROVENANCE
Swift reference implementation of the provenance marking system.
by Wolf McNally [email protected]## Introduction
Introducing a novel system called **Provenance Marks** for marking and verifying the provenance of creative or intellectual works, digital or physical. This system combines cryptography, pseudorandom number generation, and linguistic representation to produce a unique digital mark for each piece of work. Each mark, which can be represented as a sequence of natural language words, contains elements to verify the previous mark and commit to the content of the next one, forming a cryptographically-secured chain. This user-friendly method not only enhances security but also offers a simple solution for artists, institutions, and even larger commercial fields to protect their works against fraudulent claims and deep fakes.
Read the [white paper](WHITEPAPER.md).
## License
* The Provenance code is available under the MIT license. See the [LICENSE file](LICENSE) for more info.
* The [Provenance Mark Symbol](./art) is available for use with the Provenance Marking system under the [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/).
## Installation
Add the following to your `Package.swift` file:
```swift
dependencies: [
.package(url: "https://github.com/wolfmcnally/Provenance.git", from: "0.1.0")
]
```