Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
signy — Asymmetric cryptography library for generating signed URLs on embedded devices, enabling time-limited resource access using PSA Crypto API with Zephyr and ESP-IDF support. | Kitploit
Tools/GitHubGitHub/golioth/signy
Authentication & AuthorizationEmbedded Systems SecurityEncryption/Decryption ToolsIoT SecurityCryptographyHardware Security
GitHubgolioth/signy

signy

Asymmetric cryptography library for generating signed URLs on embedded devices, enabling time-limited resource access using PSA Crypto API with Zephyr and ESP-IDF support.

View Repository
7014 months agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

signy

Signed URLs for small devices.

Background

signy is a library for generating signed URLs on embedded devices using asymmetric cryptography. Signed URLs are typically utilized to grant time-limited access to private resources, such as those served by a Content Delivery Network (CDN). In the context of embedded devices, signed URLs may be used to enable an external system, or another component in the same system, to access a specific resource. For example, a device may generate a signed URL and pass it to a more capable system to allow it to download the resource on its behalf.

Use of signy requires a server that is capable of verifying the signed URLs it generates. If using signy with Golioth, the certificates associated with the Certificate Authority (CA) that issued the device certificate must be uploaded to your project.

Usage

signy leverages the Platform Security Architecture (PSA) Crypto API for signing operations. Private keys must be generated or imported using PSA Crypto APIs, and a signed certificate containing the public key must be passed to the signy library.

Signed URLs generated by signy adhere to the following format.

root@kitploit:~
BASEURL?nb=NOTBEFORE&na=NOTAFTER&cert=CERTIFICATE&sig=SIGNATURE
  • BASEURL: the location of the resource (e.g. https://gw.golioth.io/.u/c/[email protected])
  • NOTBEFORE / NOTAFTER: the unix timestamps defining the window in which the signed URL is valid. signy uses the device system time for NOTBEFORE and sets the NOTAFTER timestamp based on CONFIG_SIGNY_URL_VALIDITY_DURATION.
  • CERTIFICATE: the base64 unpadded URL encoding of the device certificate.
  • SIGNATURE: the signature over the entire portion of the URL preceding &sig=.

Zephyr

The signy repository is a Zephyr module and can be included in any Zephyr project by adding the following to the project's west.yml file.

root@kitploit:~
- name: signy
  path: modules/lib/signy
  revision: v0.2.0
  url: https://github.com/golioth/signy.git

See the Zephyr examples for more information.

ESP-IDF

The signy repository is an ESP-IDF component and can be included in any ESP-IDF project by specifying it as a dependency in the project's idf_component.yml.

root@kitploit:~
dependencies:
  signy:
    version: v0.2.0
    git: https://github.com/golioth/signy.git

See the esp-idf examples for more information.

Download Tool