• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

azjezz / psl / 22639242943

03 Mar 2026 07:30PM UTC coverage: 97.792% (-0.4%) from 98.201%
22639242943

Pull #607

github

azjezz
feat: introduce `Crypto` component

Signed-off-by: azjezz <azjezz@protonmail.com>
Pull Request #607: feat: introduce `Crypto` component

348 of 394 new or added lines in 49 files covered. (88.32%)

2 existing lines in 1 file now uncovered.

9302 of 9512 relevant lines covered (97.79%)

39.03 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/Psl/Crypto/Signing/constants.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace Psl\Crypto\Signing;
6

7
use const SODIUM_CRYPTO_SIGN_BYTES;
8
use const SODIUM_CRYPTO_SIGN_PUBLICKEYBYTES;
9
use const SODIUM_CRYPTO_SIGN_SECRETKEYBYTES;
10

11
/**
12
 * The length of a signing secret key in bytes.
13
 *
14
 * @var positive-int
15
 */
NEW
16
const SECRET_KEY_BYTES = SODIUM_CRYPTO_SIGN_SECRETKEYBYTES;
×
17

18
/**
19
 * The length of a signing public key in bytes.
20
 *
21
 * @var positive-int
22
 */
NEW
23
const PUBLIC_KEY_BYTES = SODIUM_CRYPTO_SIGN_PUBLICKEYBYTES;
×
24

25
/**
26
 * The length of a detached signature in bytes.
27
 *
28
 * @var positive-int
29
 */
NEW
30
const SIGNATURE_BYTES = SODIUM_CRYPTO_SIGN_BYTES;
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc