{"id":46344577,"url":"https://github.com/epicreach/tkey-web-authentication","last_synced_at":"2026-03-04T21:08:04.306Z","repository":{"id":288327128,"uuid":"967668697","full_name":"epicreach/tkey-web-authentication","owner":"epicreach","description":"Secure Go-based proxy server using TKey hardware for passwordless website authentication.","archived":false,"fork":false,"pushed_at":"2025-04-24T10:24:19.000Z","size":103,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-24T10:40:57.985Z","etag":null,"topics":["authentication","cryptography","daemon","go","proxy-server","security-tools"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/epicreach.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,"zenodo":null}},"created_at":"2025-04-16T20:12:00.000Z","updated_at":"2025-04-24T09:46:02.000Z","dependencies_parsed_at":"2025-04-17T08:24:17.140Z","dependency_job_id":null,"html_url":"https://github.com/epicreach/tkey-web-authentication","commit_stats":null,"previous_names":["epicreach/tkey-web-auth"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/epicreach/tkey-web-authentication","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epicreach%2Ftkey-web-authentication","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epicreach%2Ftkey-web-authentication/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epicreach%2Ftkey-web-authentication/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epicreach%2Ftkey-web-authentication/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/epicreach","download_url":"https://codeload.github.com/epicreach/tkey-web-authentication/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epicreach%2Ftkey-web-authentication/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30093044,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T20:42:30.420Z","status":"ssl_error","status_checked_at":"2026-03-04T20:42:30.057Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["authentication","cryptography","daemon","go","proxy-server","security-tools"],"created_at":"2026-03-04T21:08:03.782Z","updated_at":"2026-03-04T21:08:04.288Z","avatar_url":"https://github.com/epicreach.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tkey-web-authenticator\r\n\r\nA simple command-line tool to interface with a Tillitis TKey for secure authentication.\r\n\r\n---\r\n\r\n## Getting Started\r\n\r\n### Option 1: Use a Pre-Built Binary\r\n\r\n1. Visit the [Releases Page](https://github.com/epicreach/tkey-web-authenticator/releases).\r\n2. Download the appropriate `tar.gz` or `.zip` file for your operating system.\r\n3. Extract the downloaded file and navigate to the extracted folder.\r\n4. Run the binary:\r\n\r\n   **Linux/macOS:**\r\n\r\n   ```bash\r\n   ./tkeyauth\r\n   ```\r\n\r\n   **Windows:**\r\n\r\n   ```cmd\r\n   .\\tkeyauth.exe\r\n   ```\r\n\r\n---\r\n\r\n### Option 2: Build the Binary Yourself\r\n\r\nIf you prefer to build the binary from source, follow the instructions below.\r\n\r\n## Build Instructions\r\n\r\n### Prerequisites\r\n\r\nEnsure you have the following installed:\r\n\r\n- [Go 1.23+](https://golang.org/dl/)\r\n- [Gpg4win](https://gpg4win.org/download.html) (required for Windows users)\r\n- `make` (optional)\r\n\r\n---\r\n\r\n### Build Using `make`\r\n\r\n1. Clone the repository:\r\n\r\n   ```bash\r\n   git clone https://github.com/epicreach/tkey-web-authenticator.git\r\n   cd tkey-web-authenticator\r\n   ```\r\n\r\n2. Build the project:\r\n\r\n   ```bash\r\n   make\r\n   ```\r\n\r\n3. The binary will be created in the root directory:\r\n\r\n   ```bash\r\n   ./tkeyauth\r\n   ```\r\n\r\n4. To clean up build artifacts:\r\n   ```bash\r\n   make clean\r\n   ```\r\n\r\n---\r\n\r\n### Build Without `make`\r\n\r\n1. Clone the repository:\r\n\r\n   ```bash\r\n   git clone https://github.com/epicreach/tkey-web-authenticator.git\r\n   cd tkey-web-authenticator\r\n   ```\r\n\r\n2. Build the binary manually:\r\n\r\n   ```bash\r\n   go build -o tkeyauth ./cmd/main.go\r\n   ```\r\n\r\n3. Run the binary:\r\n\r\n   **Linux/macOS:**\r\n\r\n   ```bash\r\n   ./tkeyauth\r\n   ```\r\n\r\n   **Windows:**\r\n\r\n   ```cmd\r\n   .\\tkeyauth.exe\r\n   ```\r\n\r\n---\r\n\r\n## License\r\n\r\nThis project is licensed under the BSD 2-Clause License. See the [LICENSE](LICENSE) file for details.\r\n\r\n---\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fepicreach%2Ftkey-web-authentication","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fepicreach%2Ftkey-web-authentication","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fepicreach%2Ftkey-web-authentication/lists"}