Token Platform
  • Getting started
  • Fundamentals
    • Developer portal
    • Organizations
    • Developer apps
    • Authentication
    • Rate limits
  • Notarization APIs
    • Stamp API
    • Anchoring API
    • Common endpoints
  • Storage services
    • IPFS Web Gateway
    • IPFS Storage & Pinning Service
      • API reference
  • Streams API
    • API reference
  • SSI
    • Introduction
    • Architecture
    • API reference
  • Other
    • cli snippets
  • Legal
    • Privacy Policy
Powered by GitBook
On this page

Was this helpful?

  1. Other

cli snippets

Generating an SHA-256 Hash From the Command Line

echo -n "Do I need to prove myself again?" | openssl dgst -sha256
echo -n "Do I need to prove myself again?" | shasum -a 256
openssl dgst -sha256 data.txt
shasum -a 256 data.txt
PreviousAPI referenceNextPrivacy Policy

Last updated 3 years ago

Was this helpful?