{"id":20850596,"url":"https://github.com/multiformats/java-multibase","last_synced_at":"2025-05-12T00:41:51.554Z","repository":{"id":40380483,"uuid":"76185445","full_name":"multiformats/java-multibase","owner":"multiformats","description":"A Java implementation of multibase","archived":false,"fork":false,"pushed_at":"2025-04-28T15:59:37.000Z","size":851,"stargazers_count":39,"open_issues_count":3,"forks_count":27,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-05-12T00:41:41.753Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/multiformats.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-12-11T16:18:32.000Z","updated_at":"2025-04-28T15:59:37.000Z","dependencies_parsed_at":"2025-02-25T15:36:11.103Z","dependency_job_id":null,"html_url":"https://github.com/multiformats/java-multibase","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiformats%2Fjava-multibase","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiformats%2Fjava-multibase/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiformats%2Fjava-multibase/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiformats%2Fjava-multibase/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/multiformats","download_url":"https://codeload.github.com/multiformats/java-multibase/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253655919,"owners_count":21943072,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-18T03:10:30.726Z","updated_at":"2025-05-12T00:41:51.545Z","avatar_url":"https://github.com/multiformats.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# java-multibase\n\n[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://ipn.io)\n[![](https://img.shields.io/badge/project-multiformats-blue.svg?style=flat-square)](https://github.com/multiformats/multiformats)\n[![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](https://webchat.freenode.net/?channels=%23ipfs)\n[![](https://img.shields.io/badge/readme%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/RichardLitt/standard-readme)\n\n\u003e A Java implementation of [Multibase](https://github.com/multiformats/multibase) with encoding \u0026 decoding support for: base16[upper], base32[hex][pad][upper], base36[upper], base58btc, base64[url][pad], [base256emoji](https://github.com/multiformats/java-multibase/issues/35).\n\n## Install\n\nSimply clone this repo.\n\n## Usage\n\n```java\nbyte[] data = ...\nString encoded = Multibase.encode(Multibase.Base.Base58BTC, data);\nbyte[] decoded = Multibase.decode(encoded);\nboolean isValid = Multibase.isValid(encoded);\n```\n\n## Dependency\n\nYou can use this project by building the JAR file as specified below, or by using [JitPack](https://jitpack.io/#multiformats/java-multibase/) (also supporting Gradle, SBT, etc).\n\nfor Maven, you can add the follwing sections to your POM.XML:\n\n```xml\n  \u003crepositories\u003e\n    \u003crepository\u003e\n        \u003cid\u003ejitpack.io\u003c/id\u003e\n        \u003curl\u003ehttps://jitpack.io\u003c/url\u003e\n    \u003c/repository\u003e\n  \u003c/repositories\u003e\n\n  \u003cdependencies\u003e\n    \u003cdependency\u003e\n      \u003cgroupId\u003ecom.github.multiformats\u003c/groupId\u003e\n      \u003cartifactId\u003ejava-multibase\u003c/artifactId\u003e\n      \u003cversion\u003ev1.1.1\u003c/version\u003e\n    \u003c/dependency\u003e\n  \u003c/dependencies\u003e\n```\n\n## Testing\n\n`mvn test`\n\n## Building\n\n`mvn package` will build a JAR file with Maven dependency information.\n\n## Releasing\n\nThe version number is specified in the `pom.xml` file and must be changed in order to be accurately reflected in the JAR file manifest. A git tag must be added in the format \"vx.x.x\" for JitPack to work.\n\n## Maintainers\n\nCaptain: [@ianopolous](https://github.com/ianopolous).\n\n## Contribute\n\nContributions welcome. Please check out [the issues](https://github.com/multiformats/java-multibase/issues).\n\nCheck out our [contributing document](https://github.com/multiformats/multiformats/blob/master/contributing.md) for more information on how we work, and about contributing in general. Please be aware that all interactions related to multiformats are subject to the IPFS [Code of Conduct](https://github.com/ipfs/community/blob/master/code-of-conduct.md).\n\nSmall note: If editing the README, please conform to the [standard-readme](https://github.com/RichardLitt/standard-readme) specification.\n\n## License\n\n[MIT](LICENSE) © 2015 Ian Preston\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmultiformats%2Fjava-multibase","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmultiformats%2Fjava-multibase","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmultiformats%2Fjava-multibase/lists"}