Identity
class Identity (View source)
Pure-PHP ssh-agent client identity object
Instantiation should only be performed by \phpseclib\System\SSH\Agent class. This could be thought of as implementing an interface that phpseclib\Crypt\RSA implements. ie. maybe a Net_SSH_Auth_PublicKey interface or something. The methods in this interface would be getPublicKey and sign since those are the methods phpseclib looks for to perform public key authentication.
Constants
SSH_AGENT_RSA2_256 |
|
SSH_AGENT_RSA2_512 |
|
Properties
RSA | $key | Key Object | |
string | $key_blob | Key Blob | |
resource | $fsock | Socket Resource | |
int | $flags | Signature flags |
Methods
Default Constructor.
Set Public Key
Get Public Key
Set Signature Mode
Set Hash
Create a signature
String Shift
Details
Identity
__construct(resource $fsock)
Default Constructor.
setPublicKey(RSA $key)
Set Public Key
Called by \phpseclib\System\SSH\Agent::requestIdentities()
setPublicKeyBlob(string $key_blob)
Set Public Key
Called by \phpseclib\System\SSH\Agent::requestIdentities(). The key blob could be extracted from $this->key but this saves a small amount of computation.
mixed
getPublicKey(int $format = null)
Get Public Key
Wrapper for $this->key->getPublicKey()
setSignatureMode(int $mode)
Set Signature Mode
Doesn't do anything as ssh-agent doesn't let you pick and choose the signature mode. ie. ssh-agent's only supported mode is \phpseclib\Crypt\RSA::SIGNATURE_PKCS1
setHash(string $hash)
Set Hash
ssh-agent doesn't support using hashes for RSA other than SHA1
string
sign(string $message)
Create a signature
See "2.6.2 Protocol 2 private key signature request"
string
_string_shift(string $string, int $index = 1)
String Shift
Inspired by array_shift