added password hash

master
Max 5 years ago
parent d7bd80b4d6
commit b0fe6b7dc9

5
package-lock.json generated

@ -9443,6 +9443,11 @@
"tslib": "^1.9.3"
}
},
"ts-md5": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/ts-md5/-/ts-md5-1.2.6.tgz",
"integrity": "sha512-VFW6O4CTZsgTPDBhF31i83hPhfwd9Dcp5RnbfGOIJPDRro9IhvXMYd8xBycD0yXqHZiAvv+iDG8F+UFrPEyQ5w=="
},
"ts-node": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/ts-node/-/ts-node-7.0.1.tgz",

@ -23,16 +23,17 @@
"@angular/platform-browser-dynamic": "~7.0.0",
"@angular/router": "~7.0.0",
"apollo-angular": "^1.7.0",
"core-js": "^2.5.4",
"ngx-socket-io": "^2.0.0",
"rxjs": "~6.3.3",
"zone.js": "~0.8.26",
"apollo-angular-link-http": "^1.6.0",
"apollo-link": "^1.2.11",
"apollo-client": "^2.6.0",
"apollo-cache-inmemory": "^1.3.2",
"apollo-client": "^2.6.0",
"apollo-link": "^1.2.11",
"core-js": "^2.5.4",
"graphql": "^14.3.1",
"graphql-tag": "^2.10.0",
"graphql": "^14.3.1"
"ngx-socket-io": "^2.0.0",
"rxjs": "~6.3.3",
"ts-md5": "^1.2.6",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular/cli": "~7.0.4",

@ -3,6 +3,7 @@ import { Login } from 'src/app/models/login';
import { LoginService } from 'src/app/services/login/login.service';
import { RouterLink } from '@angular/router';
import {Router} from '@angular/router';
import {Md5} from 'ts-md5/dist/md5';
@Component({
selector: 'app-login',
@ -29,7 +30,8 @@ export class LoginComponent implements OnInit {
this.errorOccurred = false;
this.errorMessage = " ";
this.login.email = pEmail
this.login.passwordHash = pPasswordHash
const md5 = new Md5();
this.login.passwordHash = md5.appendStr(pPasswordHash).end() as string
this.loginService.login(this.login, error => this.loginError(error.json()));
}

@ -1,6 +1,8 @@
import { Component, OnInit } from '@angular/core';
import {RegisterService} from '../../services/register/register.service';
import {Registration} from '../../models/registration';
import {Router} from '@angular/router';
import {Md5} from 'ts-md5/dist/md5';
@Component({
selector: 'registration',
@ -9,6 +11,8 @@ import {Registration} from '../../models/registration';
})
export class RegisterComponent implements OnInit {
registration: Registration
errorOccurred: boolean = false;
errorMessage: string;
constructor(private registerService: RegisterService) {
this.registration = {username: null, passwordHash: null, email: null};
@ -22,7 +26,8 @@ export class RegisterComponent implements OnInit {
console.log('password same');
this.registration.username = pUsername
this.registration.email = pEmail
this.registration.passwordHash = pPasswordHash
const md5 = new Md5();
this.registration.passwordHash = md5.appendStr(pPasswordHash).end() as string
this.registerService.register(this.registration)
} else{console.log('password NOT same'); }

@ -1,3 +1,5 @@
import { Hash } from "crypto";
export interface Login {
email: string;
passwordHash: string

Loading…
Cancel
Save