Interface IRsaDecryptor
Interface for all RSA decryptor implementations.
Namespace: Fibula.Security.Contracts
Assembly: Fibula.Security.Contracts.dll
Syntax
public interface IRsaDecryptor
Methods
| Improve this Doc View SourceDecrypt(Byte[])
Decrypts the data supplied.
Declaration
Span<byte> Decrypt(byte[] data)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Byte[] | data | The data to decrypt. |
Returns
| Type | Description |
|---|---|
| System.Span<System.Byte> | The decrypted bytes of data. |