Made message signing in Cryptography use SHA512 as the message content for... #1
1 changed files with 3 additions and 2 deletions
|
@ -2,11 +2,12 @@
|
||||||
|
|
||||||
namespace Socialbox\Enums\Status;
|
namespace Socialbox\Enums\Status;
|
||||||
|
|
||||||
enum EncryptionChannelState : string
|
enum EncryptionChannelStatus : string
|
||||||
{
|
{
|
||||||
case AWAITING_RECEIVER = 'AWAITING_RECEIVER';
|
case AWAITING_RECEIVER = 'AWAITING_RECEIVER';
|
||||||
|
case SERVER_REJECTED = 'SERVER_REJECTED';
|
||||||
|
case PEER_REJECTED = 'PEER_REJECTED';
|
||||||
case ERROR = 'ERROR';
|
case ERROR = 'ERROR';
|
||||||
case DECLINED = 'DECLINED';
|
|
||||||
case OPENED = 'OPENED';
|
case OPENED = 'OPENED';
|
||||||
case CLOSED = 'CLOSED';
|
case CLOSED = 'CLOSED';
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue