芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/libraries.3/vendor/joomla/crypt/src/Key.php
type = $type; // Set the public/private key strings. $this->private = $private; $this->public = $public; } /** * Retrieve the private key * * @return string * * @since 2.0.0 */ public function getPrivate(): string { return $this->private; } /** * Retrieve the public key * * @return string * * @since 2.0.0 */ public function getPublic(): string { return $this->public; } /** * Retrieve the key type * * @return string * * @since 2.0.0 */ public function getType(): string { return $this->type; } }