{"id":13722044,"url":"https://github.com/keemobile/kotpass","last_synced_at":"2026-01-14T02:33:20.572Z","repository":{"id":37551697,"uuid":"384214968","full_name":"keemobile/kotpass","owner":"keemobile","description":"The library offers reading and writing support for KeePass (KDBX) files in Kotlin","archived":false,"fork":false,"pushed_at":"2025-09-28T16:46:43.000Z","size":744,"stargazers_count":31,"open_issues_count":5,"forks_count":3,"subscribers_count":4,"default_branch":"develop","last_synced_at":"2025-09-28T17:24:01.224Z","etag":null,"topics":["credential-storage","credentials-management","jvm","kdbx","kdbx-database","keepass","kotlin","kotlin-library","library","password-store","security-tools"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/keemobile.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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,"zenodo":null}},"created_at":"2021-07-08T18:25:36.000Z","updated_at":"2025-09-28T16:46:42.000Z","dependencies_parsed_at":"2024-05-17T23:22:16.823Z","dependency_job_id":"4002342c-e7dd-4a78-9f02-e69fb681d86f","html_url":"https://github.com/keemobile/kotpass","commit_stats":null,"previous_names":["anvell/kotpass"],"tags_count":32,"template":false,"template_full_name":null,"purl":"pkg:github/keemobile/kotpass","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keemobile%2Fkotpass","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keemobile%2Fkotpass/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keemobile%2Fkotpass/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keemobile%2Fkotpass/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/keemobile","download_url":"https://codeload.github.com/keemobile/kotpass/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keemobile%2Fkotpass/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28408711,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T01:52:23.358Z","status":"online","status_checked_at":"2026-01-14T02:00:06.678Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["credential-storage","credentials-management","jvm","kdbx","kdbx-database","keepass","kotlin","kotlin-library","library","password-store","security-tools"],"created_at":"2024-08-03T01:01:23.994Z","updated_at":"2026-01-14T02:33:20.565Z","avatar_url":"https://github.com/keemobile.png","language":"Kotlin","funding_links":[],"categories":["API libraries"],"sub_categories":["Other clients"],"readme":"# Kotpass \n![Build \u0026 Test](https://img.shields.io/github/actions/workflow/status/keemobile/kotpass/gradle.yml?label=Build%20%26%20Test)\n[![](https://jitpack.io/v/keemobile/kotpass.svg)](https://jitpack.io/#keemobile/kotpass) [![codecov](https://codecov.io/gh/keemobile/kotpass/graph/badge.svg?token=59LMP3BOXJ)](https://codecov.io/gh/keemobile/kotpass) ![badge][badge-jvm]\n\n[badge-jvm]: http://img.shields.io/badge/-JVM-DB413D.svg\n\nThe library offers reading and writing support for [KeePass](https://en.wikipedia.org/wiki/KeePass) (KDBX) files in Kotlin, including the latest format version 4.1. It is suitable for Mobile, Desktop, and Backend JVM projects. The functional style API makes it convenient for MVI-like architectures.\n\n## See it in action\n\nThis library is used as backbone of [KeeMobile](https://keemobile.app) password manager, check it out:\n\n[\u003cimg alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png' width='160'/\u003e](https://play.google.com/store/apps/details?id=app.keemobile)\n\n## Installation\n\nThe latest release is available on [Maven Central](https://central.sonatype.com/artifact/app.keemobile/kotpass/overview).\n\n```kotlin\ndependencies {\n    implementation(\"app.keemobile:kotpass:0.13.0\")\n}\n```\n\n## Usage\n\n### 🧬 [Api reference](https://keemobile.github.io/kotpass)\n\nReading from file:\n\n``` kotlin\nval credentials = Credentials.from(EncryptedValue.fromString(\"passphrase\"))\nval database = File(\"testfile.kdbx\")\n    .inputStream()\n    .use { inputStream -\u003e\n        KeePassDatabase.decode(inputStream, credentials)\n    }    \n```\n`KeePassDatabase` is represented as immutable object, in order to alter it use a set of modifier extensions. \n\nEach time new `KeePassDatabase` object is returned:\n\n``` kotlin\nval groupUuid = UUID.fromString(\"c997344c-952b-e02b-06a6-29510ce71a12\")\nval newDatabase = database\n    .modifyMeta {\n        copy(generator = \"Lorem ipsum\")\n    }.modifyGroup(groupUuid) {\n        copy(name = \"Hello kotpass!\")\n    }\n```\n\n## Third-Party Libraries\n\nThis project includes modified portions of:\n- [Kotlin Xml Builder](https://github.com/redundent/kotlin-xml-builder), version 1.9.3.\n\n  Modifications: reduced API surface, code cleanup.\n\n- [Apache Commons Lang](https://commons.apache.org/proper/commons-lang), version 3.17.0.\n\n  Modifications: included only small portion, reduced API surface.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeemobile%2Fkotpass","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkeemobile%2Fkotpass","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeemobile%2Fkotpass/lists"}