CakeFest 2024: The Official CakePHP Conference

ssh2_publickey_remove

(PECL ssh2 >= 0.10)

ssh2_publickey_remove Remove an authorized publickey

说明

ssh2_publickey_remove(resource $pkey, string $algoname, string $blob): bool

Removes an authorized publickey.

参数

pkey

Publickey Subsystem Resource

algoname

Publickey algorithm (e.g.): ssh-dss, ssh-rsa

blob

Publickey blob as raw binary data

返回值

成功时返回 true, 或者在失败时返回 false

注释

注意: 公钥子系统用于管理服务器到被认证的客户端的公钥。要用公钥认证方法来认证远程系统,应使用 ssh2_auth_pubkey_file() 函数。

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top