Page MenuHomec4science

PassphraseCredentialTypeSSHPrivateKeyText.php
No OneTemporary

File Metadata

Created
Tue, Sep 10, 01:33

PassphraseCredentialTypeSSHPrivateKeyText.php

<?php
final class PassphraseCredentialTypeSSHPrivateKeyText
extends PassphraseCredentialTypeSSHPrivateKey {
const CREDENTIAL_TYPE = 'ssh-key-text';
public function getCredentialType() {
return self::CREDENTIAL_TYPE;
}
public function getCredentialTypeName() {
return pht('SSH Private Key');
}
public function getCredentialTypeDescription() {
return pht('Store the plaintext of an SSH private key.');
}
public function getSecretLabel() {
return pht('Private Key');
}
}

Event Timeline