{"id":13536901,"url":"https://github.com/KotlinCrypto/MACs","last_synced_at":"2025-04-02T03:31:29.611Z","repository":{"id":173405760,"uuid":"609891204","full_name":"KotlinCrypto/MACs","owner":"KotlinCrypto","description":"Message Authentication Code algorithms for Kotlin Multiplatform","archived":false,"fork":false,"pushed_at":"2025-02-25T18:35:02.000Z","size":1001,"stargazers_count":20,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-25T19:34:34.815Z","etag":null,"topics":["cryptography","cryptography-library","hashing","hashing-algorithm","hashing-algorithms","kotlin","kotlin-multiplatform","kotlin-multiplatform-library","message-authentication-code"],"latest_commit_sha":null,"homepage":"https://macs.kotlincrypto.org/","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KotlinCrypto.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2023-03-05T14:52:43.000Z","updated_at":"2025-02-25T18:34:54.000Z","dependencies_parsed_at":"2024-12-28T20:22:55.817Z","dependency_job_id":"dc4d763d-0a5b-4801-af17-da3d2d9c395b","html_url":"https://github.com/KotlinCrypto/MACs","commit_stats":null,"previous_names":["kotlincrypto/macs"],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KotlinCrypto%2FMACs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KotlinCrypto%2FMACs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KotlinCrypto%2FMACs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KotlinCrypto%2FMACs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KotlinCrypto","download_url":"https://codeload.github.com/KotlinCrypto/MACs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246751221,"owners_count":20827851,"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":["cryptography","cryptography-library","hashing","hashing-algorithm","hashing-algorithms","kotlin","kotlin-multiplatform","kotlin-multiplatform-library","message-authentication-code"],"created_at":"2024-08-01T09:00:51.514Z","updated_at":"2025-04-02T03:31:29.603Z","avatar_url":"https://github.com/KotlinCrypto.png","language":"Kotlin","readme":"# MACs\n[![badge-license]][url-license]\n[![badge-latest-release]][url-latest-release]\n\n[![badge-kotlin]][url-kotlin]\n[![badge-core]][url-core]\n[![badge-hash]][url-hash]\n\n![badge-platform-android]\n![badge-platform-jvm]\n![badge-platform-js]\n![badge-platform-js-node]\n![badge-platform-wasm]\n![badge-platform-linux]\n![badge-platform-macos]\n![badge-platform-ios]\n![badge-platform-tvos]\n![badge-platform-watchos]\n![badge-platform-windows]\n![badge-support-android-native]\n![badge-support-apple-silicon]\n![badge-support-js-ir]\n![badge-support-linux-arm]\n\nMessage Authentication Code algorithms for Kotlin Multiplatform\n\n### Modules\n\n - [hmac](library/hmac/hmac/README.md)\n - [hmac-md](library/hmac/hmac-md/README.md)\n - [hmac-sha1](library/hmac/hmac-sha1/README.md)\n - [hmac-sha2](library/hmac/hmac-sha2/README.md)\n - [hmac-sha3](library/hmac/hmac-sha3/README.md)\n - [blake2](library/blake2/README.md)\n - [kmac](library/kmac/README.md)\n\n### API Docs\n\n - [https://macs.kotlincrypto.org][url-docs]\n\n### Get Started\n\nThe best way to keep `KotlinCrypto` dependencies up to date is by using the \n[version-catalog][url-version-catalog]. Alternatively, you can use the BOM as \nshown below.\n\n\u003c!-- TAG_VERSION --\u003e\n\n```kotlin\n// build.gradle.kts\ndependencies {\n    // define the BOM and its version\n    implementation(platform(\"org.kotlincrypto.macs:bom:0.7.0\"))\n\n    // define artifacts without version\n    \n    // HmacMD5\n    implementation(\"org.kotlincrypto.macs:hmac-md\")\n    \n    // HmacSHA1\n    implementation(\"org.kotlincrypto.macs:hmac-sha1\")\n    \n    // HmacSHA224, HmacSHA256, HmacSHA384, HmacSHA512\n    // HmacSHA512/t, HmacSHA512/224, HmacSHA512/256\n    implementation(\"org.kotlincrypto.macs:hmac-sha2\")\n    \n    // HmacKeccak224, HmacKeccak256, HmacKeccak384, HmacKeccak512\n    // HmacSHA3-224, HmacSHA3-256, HmacSHA3-384, HmacSHA3-512\n    implementation(\"org.kotlincrypto.macs:hmac-sha3\")\n\n    // KMAC128, KMAC256\n    implementation(\"org.kotlincrypto.macs:kmac\")\n\n    // BLAKE2b, BLAKE2s\n    implementation(\"org.kotlincrypto.macs:blake2\")\n}\n```\n\n\u003c!-- TAG_VERSION --\u003e\n[badge-latest-release]: https://img.shields.io/badge/latest--release-0.7.0-blue.svg?style=flat\n[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat\n\n\u003c!-- TAG_DEPENDENCIES --\u003e\n[badge-kotlin]: https://img.shields.io/badge/kotlin-2.1.10-blue.svg?logo=kotlin\n[badge-core]: https://img.shields.io/badge/kotlincrypto.core-0.7.0-blue.svg\n[badge-hash]: https://img.shields.io/badge/kotlincrypto.hash-0.7.0-blue.svg\n\n\u003c!-- TAG_PLATFORMS --\u003e\n[badge-platform-android]: http://img.shields.io/badge/-android-6EDB8D.svg?style=flat\n[badge-platform-jvm]: http://img.shields.io/badge/-jvm-DB413D.svg?style=flat\n[badge-platform-js]: http://img.shields.io/badge/-js-F8DB5D.svg?style=flat\n[badge-platform-js-node]: https://img.shields.io/badge/-nodejs-68a063.svg?style=flat\n[badge-platform-linux]: http://img.shields.io/badge/-linux-2D3F6C.svg?style=flat\n[badge-platform-macos]: http://img.shields.io/badge/-macos-111111.svg?style=flat\n[badge-platform-ios]: http://img.shields.io/badge/-ios-CDCDCD.svg?style=flat\n[badge-platform-tvos]: http://img.shields.io/badge/-tvos-808080.svg?style=flat\n[badge-platform-watchos]: http://img.shields.io/badge/-watchos-C0C0C0.svg?style=flat\n[badge-platform-wasm]: https://img.shields.io/badge/-wasm-624FE8.svg?style=flat\n[badge-platform-windows]: http://img.shields.io/badge/-windows-4D76CD.svg?style=flat\n[badge-support-android-native]: http://img.shields.io/badge/support-[AndroidNative]-6EDB8D.svg?style=flat\n[badge-support-apple-silicon]: http://img.shields.io/badge/support-[AppleSilicon]-43BBFF.svg?style=flat\n[badge-support-js-ir]: https://img.shields.io/badge/support-[js--IR]-AAC4E0.svg?style=flat\n[badge-support-linux-arm]: http://img.shields.io/badge/support-[LinuxArm]-2D3F6C.svg?style=flat\n[badge-support-linux-mips]: http://img.shields.io/badge/support-[LinuxMIPS]-2D3F6C.svg?style=flat\n\n[url-latest-release]: https://github.com/KotlinCrypto/MACs/releases/latest\n[url-license]: https://www.apache.org/licenses/LICENSE-2.0.txt\n[url-kotlin]: https://kotlinlang.org\n[url-core]: https://github.com/KotlinCrypto/core\n[url-hash]: https://github.com/KotlinCrypto/hash\n[url-version-catalog]: https://github.com/KotlinCrypto/version-catalog\n[url-docs]: https://macs.kotlincrypto.org\n","funding_links":[],"categories":["Libraries"],"sub_categories":["Utility","🔑 Crypto"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKotlinCrypto%2FMACs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FKotlinCrypto%2FMACs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKotlinCrypto%2FMACs/lists"}