{"id":22341384,"url":"https://github.com/mrmcc3/cljs-aws-signature","last_synced_at":"2026-04-15T09:31:03.252Z","repository":{"id":62433772,"uuid":"126572994","full_name":"mrmcc3/cljs-aws-signature","owner":"mrmcc3","description":"A pure ClojureScript implementation of the AWS Signature Version 4 Signing Process","archived":false,"fork":false,"pushed_at":"2018-04-04T03:42:36.000Z","size":30,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-16T07:18:38.549Z","etag":null,"topics":["aws","clojurescript"],"latest_commit_sha":null,"homepage":"","language":"Clojure","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/mrmcc3.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}},"created_at":"2018-03-24T06:37:20.000Z","updated_at":"2020-03-11T09:54:50.000Z","dependencies_parsed_at":"2022-11-01T21:01:41.929Z","dependency_job_id":null,"html_url":"https://github.com/mrmcc3/cljs-aws-signature","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mrmcc3/cljs-aws-signature","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmcc3%2Fcljs-aws-signature","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmcc3%2Fcljs-aws-signature/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmcc3%2Fcljs-aws-signature/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmcc3%2Fcljs-aws-signature/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrmcc3","download_url":"https://codeload.github.com/mrmcc3/cljs-aws-signature/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmcc3%2Fcljs-aws-signature/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31834483,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T07:17:56.427Z","status":"ssl_error","status_checked_at":"2026-04-15T07:17:30.007Z","response_time":63,"last_error":"SSL_read: 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":["aws","clojurescript"],"created_at":"2024-12-04T08:06:41.200Z","updated_at":"2026-04-15T09:31:02.849Z","avatar_url":"https://github.com/mrmcc3.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cljs-aws-signature\n\nA pure ClojureScript implementation of the\n[AWS Signature Version 4 Signing Process](https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html)\n\n## Usage\n\n[![Clojars Project](https://img.shields.io/clojars/v/mrmcc3/cljs-aws-signature.svg)](https://clojars.org/mrmcc3/cljs-aws-signature)\n\nSee `test/mrmcc3/aws/sig_v4_usage.cljs` for an example. Run with\n\n```\n$ clj -Atest:usage\n```\n\nExample request map.\n```clojure\n{:method  \"GET\"\n :path    \"/thepath/\"\n :query   {:Hello \"World\"}\n :headers {:Host \"hw.com\", :X-Amz-Date \"20180403T075016Z\"}\n :body    \"the request body\"\n\n :service \"lambda\"\n :region  \"ap-southeast-2\"\n :access  \"aws-access-key-id\"\n :secret  \"aws-secret-access-key\"}\n```\n\nOutput of `sign-req`\n```clojure\n{:method    \"GET\"\n :path      \"/thepath/\"\n :query     {:Hello \"World\"}\n :headers   {:Host \"hw.com\", :X-Amz-Date \"20180403T075016Z\"}\n :body      \"the request body\"\n\n :service   \"lambda\"\n :region    \"ap-southeast-2\"\n :secret    \"aws-secret-access-key\"\n :access    \"aws-access-key-id\"\n\n :alg       \"AWS4-HMAC-SHA256\"\n :iso       \"20180403T075016Z\"\n :day       \"20180403\"\n :signed    \"host;x-amz-date\"\n :creq      \"GET\\n/thepath/\\nHello=World\\nhost:hw.com\\nx-amz-date:20180403T075016Z\\n\\nhost;x-amz-date\\n6b5eacc80f13368f01e2107935c6adaccd58cda3a709cc2faebe29c016ab8962\"\n :scope     \"20180403/ap-southeast-2/lambda/aws4_request\"\n :sts       \"AWS4-HMAC-SHA256\\n20180403T075016Z\\n20180403/ap-southeast-2/lambda/aws4_request\\n00bb03ecf97c0674c08f0ac63f2f9c9ac04c447b2cdaced9418336ce92bb5837\"\n :signature \"05b9ee058cffb668b7bec341155a08c0a37211fbd64c63f584487fb349383fd8\"\n :authz     \"AWS4-HMAC-SHA256 Credential=aws-access-key-id/20180403/ap-southeast-2/lambda/aws4_request, SignedHeaders=host;x-amz-date, Signature=05b9ee058cffb668b7bec341155a08c0a37211fbd64c63f584487fb349383fd8\"}\n```\n\n## Tests\n\nIncludes all tests from the [AWS Test Suite](https://docs.aws.amazon.com/general/latest/gr/signature-v4-test-suite.html)\nexcept for `get-header-value-multiline`\n\n```\n$ clj -Atest:node\n$ clj -Atest:adv\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrmcc3%2Fcljs-aws-signature","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrmcc3%2Fcljs-aws-signature","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrmcc3%2Fcljs-aws-signature/lists"}