{"id":24849023,"url":"https://github.com/george012/ltc_scrypt_go","last_synced_at":"2025-10-15T00:15:06.122Z","repository":{"id":245245243,"uuid":"817577959","full_name":"george012/ltc_scrypt_go","owner":"george012","description":"litecoin scrypt lib with cgo","archived":false,"fork":false,"pushed_at":"2024-06-25T02:00:30.000Z","size":46,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-31T12:19:37.799Z","etag":null,"topics":["litecoin","litecoin-scrypt","litecoin-scrypt-go","ltc","ltc-scrypt","ltc-scrypt-go","scrypt"],"latest_commit_sha":null,"homepage":"https://pkg.go.dev/github.com/george012/ltc_scrypt_go","language":"Shell","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/george012.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-06-20T02:55:51.000Z","updated_at":"2024-06-25T01:54:14.000Z","dependencies_parsed_at":"2024-06-20T21:38:59.640Z","dependency_job_id":"1f845069-075c-4f0a-9148-88d2ffb63881","html_url":"https://github.com/george012/ltc_scrypt_go","commit_stats":null,"previous_names":["george012/ltc_scrypt_go"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george012%2Fltc_scrypt_go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george012%2Fltc_scrypt_go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george012%2Fltc_scrypt_go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george012%2Fltc_scrypt_go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/george012","download_url":"https://codeload.github.com/george012/ltc_scrypt_go/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245641438,"owners_count":20648644,"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","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":["litecoin","litecoin-scrypt","litecoin-scrypt-go","ltc","ltc-scrypt","ltc-scrypt-go","scrypt"],"created_at":"2025-01-31T12:19:41.239Z","updated_at":"2025-10-15T00:15:01.072Z","avatar_url":"https://github.com/george012.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003c!-- TOC --\u003e\n\n- [1. info](#1-info)\n- [2. use](#2-use)\n- [3. depends_Linux](#3-depends_linux)\n- [4. depends_Darwin](#4-depends_darwin)\n- [5. depends_Windows](#5-depends_windows)\n- [6. Test](#6-test)\n\n\u003c!-- /TOC --\u003e\n\n# 1. info\n* copy with [github.com/litecoin-project/litecoin](https://github.com/litecoin-project/litecoin)\n* copy `scrypt.cpp` [litecoin/src/crypto/scrypt.cpp](https://github.com/litecoin-project/litecoin/tree/master/src/crypto/scrypt.cpp)\n* copy `scrypt.h` [litecoin/src/crypto/scrypt.h](https://github.com/litecoin-project/litecoin/tree/master/src/crypto/scrypt.h)\n\n# 2. use\n```\ngo get -u github.com/george012/ltc_scrypt_go@latest\n```\n\n# 3. depends_Linux\n```\nsudo apt update\nsudo apt install openssl libssl-dev\n\n```\n\n# 4. depends_Darwin\n```\nbrew install openssl\n\nvim ~/.bash_profile\n\n#OpenSSL\nexport OPENSSL_ROOT_DIR=$(brew --prefix openssl)\nexport OPENSSL_LIBRARIES=$OPENSSL_ROOT_DIR/lib\nexport OPENSSL_INCLUDE_DIR=$OPENSSL_ROOT_DIR/include\nexport PKG_CONFIG_PATH=$OPENSSL_ROOT_DIR/lib/pkgconfig:$PKG_CONFIG_PATH\n```\n\n# 5. depends_Windows\n* msys2 and mingw64\n```\n  - name: Install MSYS2 using choco\n    if: matrix.os == 'windows-latest'\n    run: choco install msys2 --params \"/InstallDir=C:\\msys64\"\n\n  - name: Setup MSYS2 and install dependencies\n    if: matrix.os == 'windows-latest'\n    run: |\n      C:\\msys64\\usr\\bin\\bash -lc \"pacman -Sy --noconfirm \u0026\u0026 pacman -S --noconfirm base-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake mingw-w64-x86_64-openssl\"\n      echo \"C:\\\\msys64\\\\mingw64\\\\bin\" \u003e\u003e $GITHUB_ENV\n      echo \"C:\\\\msys64\\\\usr\\\\bin\" \u003e\u003e $GITHUB_ENV\n\npacman -Syu mingw64-toolchain \n\n```\n\n\n# 6. Test\n```\ngo test -v -run ./...\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeorge012%2Fltc_scrypt_go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeorge012%2Fltc_scrypt_go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeorge012%2Fltc_scrypt_go/lists"}