Skip to content
This repository has been archived by the owner on Sep 8, 2020. It is now read-only.

Commit

Permalink
Merge pull request #2 from rkeet/feature/use-paragonie-hidden-string-…
Browse files Browse the repository at this point in the history
…and-composer-php73

Feature/use paragonie hidden string and composer php73
  • Loading branch information
rkeet authored Jan 15, 2019
2 parents d2f55ba + 06d2a66 commit ee33abc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@
}
],
"require": {
"php": "^7.2",
"php": "^7.2 || ^7.3",
"ext-sodium": "*",
"doctrine/annotations": "^1.6",
"doctrine/orm": "^2.6",
"paragonie/halite": "^4.4",
"paragonie/hidden-string": "^1.0",
"zendframework/zend-modulemanager": "^2.8",
"zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
"zendframework/zend-stdlib": "^3.2"
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/EncryptionAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
use Keet\Encrypt\Interfaces\EncryptionInterface;
use ParagonIE\ConstantTime\Binary;
use ParagonIE\Halite\Alerts\InvalidKey;
use ParagonIE\Halite\HiddenString;
use ParagonIE\Halite\Symmetric\Crypto;
use ParagonIE\Halite\Symmetric\EncryptionKey;
use ParagonIE\HiddenString\HiddenString;

class EncryptionAdapter implements EncryptionInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/HashingAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
use Keet\Encrypt\Interfaces\HashingInterface;
use ParagonIE\ConstantTime\Binary;
use ParagonIE\Halite\Alerts\InvalidKey;
use ParagonIE\Halite\HiddenString;
use ParagonIE\Halite\Password;
use ParagonIE\Halite\Symmetric\EncryptionKey;
use ParagonIE\HiddenString\HiddenString;
use TypeError;

class HashingAdapter implements HashingInterface
Expand Down

0 comments on commit ee33abc

Please sign in to comment.