xss.EncryptionHandler 2.0.1

Add method overload key connection

There is a newer version of this package available.
See the version list below for details.
Install-Package xss.EncryptionHandler -Version 2.0.1
dotnet add package xss.EncryptionHandler --version 2.0.1
<PackageReference Include="xss.EncryptionHandler" Version="2.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add xss.EncryptionHandler --version 2.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: xss.EncryptionHandler, 2.0.1"
For F# scripts that support #r syntax, copy this into the source code to reference the package.

Release Notes

Version 2.+-
       a. does not contain try catch. make sure to surround this method with try catch statement when used.
       b. it keeps the encryption keys in cache for 60 minutes, to avoid several calls to the database
     
     General-
     Set the parameters for your application.

Need these store procedure in your client app.

Add method:
getParameters
setParameters

/*=============================================
-- Author:  Bbautista
-- Create Date: 2019-02-21
-- Dependencies:  
-- Description:  
-- Notes:  
-- [Redmine Ticket: ?] - Update Encryption Nuget
-- Modification:  
-- [Redmine Ticket: ?]
-- =============================================
*/
Create Procedure [dbo].[Encryption_GetSettings_Sp]
As
Begin
   Set NoCount On;
   Set Transaction Isolation Level Read UnCommitted;
   Select top 1
   [S].[Encryption_passPhrase]
 , [S].[Encryption_SaltValue]
 , [S].[Encryption_InitVector]
   From [tbl_Settings] AS [S];
End;

Please, make sure.

Supported Methods:
-Encrypt
-Decrypt

Example Code:
Encryption.Encrypt("x")
Encryption.Decrypt("x")

NuGet packages (125)

Showing the top 5 NuGet packages that depend on xss.EncryptionHandler:

Package Downloads
xss.ProductEntryBackEnd
Admin product and categories
xss.EmailTemplateBackEnd
Generation new version with changes in updated nugets
xss.RolesBackend
This nuget is for Backend for User, roles, navsettings, reports_roles and controls management
xss.DistributorBackEnd
Package Description
xss.PromoCodes
Package Description

Version History

Version Downloads Last updated
4.2.1 47 9/22/2022
4.2.0 102 4/27/2022
4.1.1 11 4/21/2022
4.1.0 110 1/6/2022
4.0.0 194 3/23/2021
3.0.0 280 11/20/2020
2.0.2 220 8/4/2020
2.0.1 114 6/12/2020
2.0.0 11 6/12/2020
1.0.9 159 4/2/2020
1.0.8.5 150 11/29/2019
Show less