Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Component/Encryption/Algorithm/KeyEncryptionAlgorithm.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@
interface KeyEncryptionAlgorithm extends Algorithm
{
public const MODE_DIRECT = 'dir';

public const MODE_ENCRYPT = 'enc';

public const MODE_WRAP = 'wrap';

public const MODE_AGREEMENT = 'agree';

/**
Expand Down
2 changes: 2 additions & 0 deletions src/Component/KeyManagement/KeyAnalyzer/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ final class Message implements \JsonSerializable
private $severity;

public const SEVERITY_LOW = 'low';

public const SEVERITY_MEDIUM = 'medium';

public const SEVERITY_HIGH = 'high';

/**
Expand Down