User password encrypted

This commit is contained in:
Eudes Inácio
2021-08-26 16:32:59 +01:00
parent 246b626600
commit c80d8fb588
3 changed files with 75 additions and 1 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { AESEncrypt } from './aesencrypt.service';
describe('AuthService', () => {
let service: AESEncrypt;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(AESEncrypt);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});