{"id":21306560,"url":"https://github.com/techmdw/gotls","last_synced_at":"2025-10-10T10:35:11.811Z","repository":{"id":217889992,"uuid":"744097883","full_name":"TechMDW/gotls","owner":"TechMDW","description":null,"archived":false,"fork":false,"pushed_at":"2024-01-16T16:12:21.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-01T18:38:23.182Z","etag":null,"topics":["go","tls"],"latest_commit_sha":null,"homepage":"","language":"Go","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/TechMDW.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}},"created_at":"2024-01-16T16:07:52.000Z","updated_at":"2024-01-18T13:41:02.000Z","dependencies_parsed_at":"2024-01-18T17:59:02.509Z","dependency_job_id":"b8905e3c-bf18-4080-8d43-6e40d0eb5cf7","html_url":"https://github.com/TechMDW/gotls","commit_stats":null,"previous_names":["techmdw/gotls"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TechMDW/gotls","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechMDW%2Fgotls","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechMDW%2Fgotls/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechMDW%2Fgotls/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechMDW%2Fgotls/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TechMDW","download_url":"https://codeload.github.com/TechMDW/gotls/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechMDW%2Fgotls/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279003544,"owners_count":26083595,"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-10T02:00:06.843Z","response_time":62,"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":["go","tls"],"created_at":"2024-11-21T16:24:33.344Z","updated_at":"2025-10-10T10:35:11.792Z","avatar_url":"https://github.com/TechMDW.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gotls\n\n## Overview\n\n`gotls` is a Go package that extends crypto/tls by offering a comprehensive range of cipher suites. It is designed for developers who require advanced TLS configurations and a broader selection of cipher suites in their Go applications.\n\nAll tls information is fetched from `https://www.iana.org/assignments/tls-parameters` (Internet Assigned Numbers Authority)\n\n## Installation\n\nTo install `gotls`, use the following go get command: `go get github.com/TechMDW/gotls`\n\n## Usage\n\nBelow is a basic example of how to use `gotls` in your Go application:\n\n```go\npackage main\n\nimport (\n    \"github.com/TechMDW/gotls\"\n    \"fmt\"\n)\n\nfunc main() {\n    // Example: Fetching a cipher suite by name\n    {\n        cipherSuite := gotls.GetByName(\"TLS_RSA_WITH_AES_128_GCM_SHA256\")\n        if cipherSuite != nil {\n            fmt.Println(\"Cipher Suite Name:\", cipherSuite.Name)\n            fmt.Println(\"Cipher Suite Code:\", cipherSuite.Code)\n        }\n    }\n\n    {\n        cipherSuite := gotls.Get(156)\n        if cipherSuite != nil {\n            fmt.Println(\"Cipher Suite Name:\", cipherSuite.Name)\n            fmt.Println(\"Cipher Suite Code:\", cipherSuite.Code)\n        }\n    }\n}\n```\n\n## License\n\nThis project is licensed under the Apache License 2.0.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechmdw%2Fgotls","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftechmdw%2Fgotls","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechmdw%2Fgotls/lists"}