├── .editorconfig ├── .gitignore ├── .travis.yml ├── AUTHORS ├── LICENSE ├── README.md ├── docs ├── CNAME ├── concept.md ├── features.md ├── images │ ├── favicon.png │ ├── iscc-algo-design.svg │ ├── iscc-algo-design2.svg │ ├── iscc-badge.svg │ ├── iscc-creation-instance-id.svg │ ├── iscc-creation-process.svg │ ├── iscc-decentralized-issuance.svg │ ├── iscc-image-clustering.svg │ ├── iscc-pcf.svg │ ├── iscc-similarity-hash.svg │ ├── iscc-web-demo.svg │ ├── logo-black.svg │ └── logo-white.svg ├── index.md ├── license.md ├── resources.md ├── specification.md └── stylesheets │ └── custom.css ├── mkdocs.yml ├── poetry.lock ├── pyproject.toml ├── src └── iscc │ ├── __init__.py │ ├── const.py │ ├── iscc.py │ └── iscc.pyi ├── tests ├── __init__.py ├── build_test_data.py ├── file_image_cat.gif ├── file_image_cat.jpg ├── file_image_cat.png ├── file_image_lenna.jpg ├── file_image_pixel_png_black.png ├── file_image_pixel_png_transp.png ├── file_image_pixel_png_white.png ├── test_data.json ├── test_inputs.json └── test_iscc.py └── tools ├── .gitignore ├── __init__.py ├── convert.py └── stamp.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/README.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | iscc.codes 2 | -------------------------------------------------------------------------------- /docs/concept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/concept.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/images/favicon.png -------------------------------------------------------------------------------- /docs/images/iscc-algo-design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/images/iscc-algo-design.svg -------------------------------------------------------------------------------- /docs/images/iscc-algo-design2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/images/iscc-algo-design2.svg -------------------------------------------------------------------------------- /docs/images/iscc-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/images/iscc-badge.svg -------------------------------------------------------------------------------- /docs/images/iscc-creation-instance-id.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/images/iscc-creation-instance-id.svg -------------------------------------------------------------------------------- /docs/images/iscc-creation-process.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/images/iscc-creation-process.svg -------------------------------------------------------------------------------- /docs/images/iscc-decentralized-issuance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/images/iscc-decentralized-issuance.svg -------------------------------------------------------------------------------- /docs/images/iscc-image-clustering.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/images/iscc-image-clustering.svg -------------------------------------------------------------------------------- /docs/images/iscc-pcf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/images/iscc-pcf.svg -------------------------------------------------------------------------------- /docs/images/iscc-similarity-hash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/images/iscc-similarity-hash.svg -------------------------------------------------------------------------------- /docs/images/iscc-web-demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/images/iscc-web-demo.svg -------------------------------------------------------------------------------- /docs/images/logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/images/logo-black.svg -------------------------------------------------------------------------------- /docs/images/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/images/logo-white.svg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/resources.md -------------------------------------------------------------------------------- /docs/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/specification.md -------------------------------------------------------------------------------- /docs/stylesheets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/docs/stylesheets/custom.css -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/iscc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/src/iscc/__init__.py -------------------------------------------------------------------------------- /src/iscc/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/src/iscc/const.py -------------------------------------------------------------------------------- /src/iscc/iscc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/src/iscc/iscc.py -------------------------------------------------------------------------------- /src/iscc/iscc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/src/iscc/iscc.pyi -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/build_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/tests/build_test_data.py -------------------------------------------------------------------------------- /tests/file_image_cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/tests/file_image_cat.gif -------------------------------------------------------------------------------- /tests/file_image_cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/tests/file_image_cat.jpg -------------------------------------------------------------------------------- /tests/file_image_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/tests/file_image_cat.png -------------------------------------------------------------------------------- /tests/file_image_lenna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/tests/file_image_lenna.jpg -------------------------------------------------------------------------------- /tests/file_image_pixel_png_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/tests/file_image_pixel_png_black.png -------------------------------------------------------------------------------- /tests/file_image_pixel_png_transp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/tests/file_image_pixel_png_transp.png -------------------------------------------------------------------------------- /tests/file_image_pixel_png_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/tests/file_image_pixel_png_white.png -------------------------------------------------------------------------------- /tests/test_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/tests/test_data.json -------------------------------------------------------------------------------- /tests/test_inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/tests/test_inputs.json -------------------------------------------------------------------------------- /tests/test_iscc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/tests/test_iscc.py -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | *.docx 2 | -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/tools/__init__.py -------------------------------------------------------------------------------- /tools/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/tools/convert.py -------------------------------------------------------------------------------- /tools/stamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iscc/iscc-specs/HEAD/tools/stamp.py --------------------------------------------------------------------------------