![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
github.com/siku2/arigo
A client library for the aria2 RPC interface.
Features:
arigo currently doesn't start and manage the aria2c process for you. To start aria2 use the following command:
aria2c --enable-rpc --rpc-listen-all
If aria2 is not installed then head on to https://aria2.github.io/ and follow the instructions there.
package main
import (
"fmt"
"github.com/siku2/arigo"
)
func main() {
c, err := arigo.Dial("ws://localhost:6800/jsonrpc", "")
if err != nil {
panic(err)
}
// Download is a utility method which calls AddURI and
// then waits for the download to complete
status, err := c.Download(arigo.URIs("https://example.org/file"), nil)
if err != nil {
panic(err)
}
// download complete
fmt.Println(status.GID)
}
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.