Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pleas update docs for IEncryptionProvider #37

Closed
Polemus opened this issue Mar 15, 2022 · 2 comments
Closed

Pleas update docs for IEncryptionProvider #37

Polemus opened this issue Mar 15, 2022 · 2 comments
Labels
question Further information is requested

Comments

@Polemus
Copy link

Polemus commented Mar 15, 2022

No description provided.

@Eastrall
Copy link
Owner

The encryption provider documentation will be updated in v4 since the system has changed and is now much easier to setup.
The interface is simplier, it just takes a byte[] input and needs to return the encrypted/decrypted data as a byte[]:

public interface IEncryptionProvider
{
    byte[] Encrypt(byte[] input);
    byte[] Decrypt(byte[] input);
}

Please wait a little bit for v4 release, I should release it at the same time as .NET 7 release.

@Eastrall Eastrall added the question Further information is requested label Oct 29, 2022
@Eastrall Eastrall mentioned this issue Nov 11, 2022
@Eastrall
Copy link
Owner

Shipped in 4.0.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants