Download the PHP package nimiq/utils without Composer

On this page you can find all versions of the php package nimiq/utils. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package utils

Nimiq PHP Utilities

This is a collection of utility classes for working with Nimiq primitives in PHP. It is not meant to enable a Nimiq network node in PHP, but rather to verify signatures, derive and validate addresses and to work with serialized primitives in a PHP environment. This collection is planned to grow over time when the need arises or by additions from the community.

Installation

The Nimiq PHP Utilities are availabe via the Packagist package registry and can be installed with Composer:

Please note that PHP >= 7.2 with an installed sodium extention is required to use these utilities. Please make sure that you have your operating system's equivalent of the php-sodium package installed or that you activate the sodium extension in your hosting's PHP settings.

Usage

The utility classes are available in the Nimiq\Utils namespace:

To generate byte-encoded strings from HEX representations, you can use sodium_hex2bin(), for example:

AddressUtils

Convert a public key into a Nimiq userfriendly address.

SignatureUtils

Verify a signature for the given data and public key.

Verify a message signature for the given message and public key.

Message signatures are different from regular signatures in that the message is prefixed and hashed before being signed. This method applies these same manipulations to the message before verifying the signature.

RpcUtils

Generate a redirect URL with the parameters encoded in the URL fragment.

Note: Binary strings are not yet supported in $args!

Development

The sodium cryptographic methods are best documented in the developer's documentation: https://paragonie.com/book/pecl-libsodium.

Setup

  1. Use PHP >= 7.2
  2. Install the sodium extension
  3. Verify that you have the sodium extension correctly installed by running php test/version_check.php - if it displays the extension's version numbers, everything is good to go

Testing

To execute a (minimal) test of these utilities' functionality, run:

The expected output is:


All versions of utils with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2
ext-sodium Version *
tuupola/base32 Version ^0.2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package nimiq/utils contains the following files

Loading the files please wait ....