File

lib/core/src/encryption/encryption.commons.ts

Index

Properties
Methods

Properties

Abstract used
Type : literal type

Methods

Abstract decrypt
decrypt(str: string)
Parameters :
Name Type Optional
str string No
Returns : Promise<any>
Abstract encrypt
encrypt(data: any)
Parameters :
Name Type Optional
data any No
Returns : Promise<string>
export abstract class EncryptionHandler {
	abstract used 	:	{
							toEncrypt: number
							toDecrypt: number
						}

	abstract encrypt(data: any)			: Promise<string>
	abstract decrypt(str	: string)	: Promise<any>
}

results matching ""

    No results matching ""