ParagonIE_Sodium_Core_Poly1305_State::__destruct() public WP 1.0
Zero internal buffer upon destruction
{} It's a method of the class: ParagonIE_Sodium_Core_Poly1305_State{}
No Hooks.
Return
````. Null. Nothing.
Usage
$ParagonIE_Sodium_Core_Poly1305_State = new ParagonIE_Sodium_Core_Poly1305_State(); $ParagonIE_Sodium_Core_Poly1305_State->__destruct();
Code of ParagonIE_Sodium_Core_Poly1305_State::__destruct() ParagonIE Sodium Core Poly1305 State:: destruct WP 5.7
public function __destruct()
{
$this->r[0] ^= $this->r[0];
$this->r[1] ^= $this->r[1];
$this->r[2] ^= $this->r[2];
$this->r[3] ^= $this->r[3];
$this->r[4] ^= $this->r[4];
$this->h[0] ^= $this->h[0];
$this->h[1] ^= $this->h[1];
$this->h[2] ^= $this->h[2];
$this->h[3] ^= $this->h[3];
$this->h[4] ^= $this->h[4];
$this->pad[0] ^= $this->pad[0];
$this->pad[1] ^= $this->pad[1];
$this->pad[2] ^= $this->pad[2];
$this->pad[3] ^= $this->pad[3];
$this->leftover = 0;
$this->final = true;
}