Made message signing in Cryptography use SHA512 as the message content for... #1

Closed
netkas wants to merge 421 commits from master into dev
Showing only changes of commit 8cad8f97fe - Show all commits

View file

@ -109,4 +109,14 @@
{
return sprintf("%s@%s", $this->username, $this->domain);
}
/**
* Returns the string representation of the object
*
* @return string The string representation of the object
*/
public function __toString(): string
{
return $this->getAddress();
}
}