Package burp.api.montoya.collaborator
Interface SecretKey
public interface SecretKey
Secret key that is associated with a
CollaboratorClient
-
Method Summary
Modifier and TypeMethodDescriptionstatic SecretKey
Create an instance ofSecretKey
which you will be able to use to restore a previously createdCollaboratorClient
with theCollaborator.restoreClient(SecretKey)
method.toString()
Secret key in string form.
-
Method Details
-
toString
String toString()Secret key in string form. -
secretKey
Create an instance ofSecretKey
which you will be able to use to restore a previously createdCollaboratorClient
with theCollaborator.restoreClient(SecretKey)
method.- Parameters:
encodedKey
- The base64 encoded raw secret key.- Returns:
- An instance of
SecretKey
wrapping the provided secret key.
-