{"id":17760790,"url":"https://github.com/mtoohey31/go-evercrypt","last_synced_at":"2025-10-17T03:22:50.470Z","repository":{"id":259341554,"uuid":"877625039","full_name":"mtoohey31/go-evercrypt","owner":"mtoohey31","description":"A Go wrapper for EverCrypt.","archived":false,"fork":false,"pushed_at":"2024-10-24T02:58:35.000Z","size":39,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-24T16:09:26.709Z","etag":null,"topics":["cryptography","formal-methods","formal-verification","go","golang","hack-star","hacl","high-performance","security","verification","verified-primitives"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mtoohey31.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":"2024-10-24T00:40:42.000Z","updated_at":"2024-10-24T02:58:38.000Z","dependencies_parsed_at":"2024-10-26T19:31:12.462Z","dependency_job_id":"aebce2ca-63fc-4be8-85a3-8c3c45698519","html_url":"https://github.com/mtoohey31/go-evercrypt","commit_stats":null,"previous_names":["mtoohey31/go-evercrypt"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mtoohey31/go-evercrypt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtoohey31%2Fgo-evercrypt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtoohey31%2Fgo-evercrypt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtoohey31%2Fgo-evercrypt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtoohey31%2Fgo-evercrypt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mtoohey31","download_url":"https://codeload.github.com/mtoohey31/go-evercrypt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtoohey31%2Fgo-evercrypt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279276409,"owners_count":26138754,"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","status":"online","status_checked_at":"2025-10-17T02:00:07.504Z","response_time":56,"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":["cryptography","formal-methods","formal-verification","go","golang","hack-star","hacl","high-performance","security","verification","verified-primitives"],"created_at":"2024-10-26T19:13:17.193Z","updated_at":"2025-10-17T03:22:50.453Z","avatar_url":"https://github.com/mtoohey31.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# go-evercrypt\n\nA Go wrapper for [EverCrypt](https://github.com/hacl-star/hacl-star#evercrypt). APIs are intended to be as close as possible to the existing equivalent Go packages to make drop-in replacement possible. To build this package, you must have the EverCrypt C library installed.\n\nThis is currently a WIP. Here is a list of the corresponding Go packages and EverCrypt functionality that I'm aware of, in a checklist tracking what's been implemented in this module:\n- [ ] [`crypto/aes`](https://pkg.go.dev/crypto/aes)/[`EverCrypt_AEAD`](https://hacl-star.github.io/EverCryptAEAD.html)\n- [ ] [`crypto/cipher`](https://pkg.go.dev/crypto/cipher)/[`EverCrypt_CTR`](https://hacl-star.github.io/EverCryptCTR.html)\n- [ ] [`crypto/ecdh`](https://pkg.go.dev/crypto/ecdh)/[`EverCrypt_Curve25519`](https://hacl-star.github.io/EverCryptNonAgile.html#curve25519)\n- [ ] [`crypto/ed25519`](https://pkg.go.dev/crypto/ed25519)/[`EverCrypt_Ed25519`](https://hacl-star.github.io/EverCryptNonAgile.html#ed25519)\n- [ ] [`crypto/hmac`](https://pkg.go.dev/crypto/hmac)/[`EverCrypt_HMAC`](https://hacl-star.github.io/EverCryptHMAC.html)\n- [x] [`crypto/md5`](https://pkg.go.dev/crypto/md5)/[`EverCrypt_Hash`](https://hacl-star.github.io/EverCryptHash.html)\n- [x] [`crypto/sha1`](https://pkg.go.dev/crypto/sha1)/[`EverCrypt_Hash`](https://hacl-star.github.io/EverCryptHash.html)\n- [x] [`crypto/sha256`](https://pkg.go.dev/crypto/sha256)/[`EverCrypt_Hash`](https://hacl-star.github.io/EverCryptHash.html)\n- [x] [`crypto/sha512`](https://pkg.go.dev/crypto/sha512)/[`EverCrypt_Hash`](https://hacl-star.github.io/EverCryptHash.html)\n- [x] [`golang.org/x/crypto/blake2b`](https://pkg.go.dev/golang.org/x/crypto/blake2b)/[`EverCrypt_Hash`](https://hacl-star.github.io/EverCryptHash.html)\n- [x] [`golang.org/x/crypto/blake2s`](https://pkg.go.dev/golang.org/x/crypto/blake2s)/[`EverCrypt_Hash`](https://hacl-star.github.io/EverCryptHash.html)\n- [ ] [`golang.org/x/crypto/chacha20poly1305`](https://pkg.go.dev/golang.org/x/crypto/chacha20poly1305)/[`EverCrypt_AEAD`](https://hacl-star.github.io/EverCryptAEAD.html)\n- [ ] [`golang.org/x/crypto/hkdf`](https://pkg.go.dev/golang.org/x/crypto/hkdf)/[`EverCrypt_HKDF`](https://hacl-star.github.io/EverCryptHKDF.html)\n- [ ] [`golang.org/x/crypto/poly1305`](https://pkg.go.dev/golang.org/x/crypto/poly1305)/[`EverCrypt_Poly1305`](https://hacl-star.github.io/EverCryptNonAgile.html#poly1305)\n- [x] [`golang.org/x/crypto/sha3`](https://pkg.go.dev/golang.org/x/crypto/sha3)/[`EverCrypt_Hash`](https://hacl-star.github.io/EverCryptHash.html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmtoohey31%2Fgo-evercrypt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmtoohey31%2Fgo-evercrypt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmtoohey31%2Fgo-evercrypt/lists"}