mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 10:41:56 +00:00
818ad9fef5
* setup components, reducers, actions, and added routes * removed redux, using local state and ethereumjs-wallet * added validation and state reset * added visibility options and changed btn colors * updated isValidPrivKey and updated some components to stateless functional comp * componentize input and add placeholder message * removed cn from KeystoreDetails * adds isValidPrivate to buffer check and min pw length to 0 * remove packagelock to fix merge conflict * added utilities tab removed keystore tab * adds fixpkey in validators and uses it across two components * added checksum removal and btn css fixes * Fixed en.json formatting - also removed fixedPkey * Added unit tests for isValidPrivKey * add runtime checks and rename stripHexPrefix to strippedPrivateKey * switch back to stripHexPrefix * Add constant for n-factor * enforce 9 char minimum
118 lines
3.2 KiB
TypeScript
118 lines
3.2 KiB
TypeScript
import { isValidEncryptedPrivKey, isValidPrivKey } from 'libs/validators';
|
|
import { stripHexPrefix } from 'libs/values';
|
|
import React, { Component } from 'react';
|
|
import translate, { translateRaw } from 'translations';
|
|
|
|
export interface PrivateKeyValue {
|
|
key: string;
|
|
password: string;
|
|
valid: boolean;
|
|
}
|
|
|
|
interface Validated {
|
|
fixedPkey: string;
|
|
isValidPkey: boolean;
|
|
isPassRequired: boolean;
|
|
valid: boolean;
|
|
}
|
|
|
|
function validatePkeyAndPass(pkey: string, pass: string): Validated {
|
|
const fixedPkey = stripHexPrefix(pkey);
|
|
const validPkey = isValidPrivKey(fixedPkey);
|
|
const validEncPkey = isValidEncryptedPrivKey(fixedPkey);
|
|
const isValidPkey = validPkey || validEncPkey;
|
|
|
|
let isValidPass = false;
|
|
|
|
if (validPkey) {
|
|
isValidPass = true;
|
|
} else if (validEncPkey) {
|
|
isValidPass = pass.length > 0;
|
|
}
|
|
|
|
return {
|
|
fixedPkey,
|
|
isValidPkey,
|
|
isPassRequired: validEncPkey,
|
|
valid: isValidPkey && isValidPass
|
|
};
|
|
}
|
|
|
|
export default class PrivateKeyDecrypt extends Component {
|
|
public props: {
|
|
value: PrivateKeyValue;
|
|
onChange(value: PrivateKeyValue): void;
|
|
onUnlock(): void;
|
|
};
|
|
|
|
public render() {
|
|
const { key, password } = this.props.value;
|
|
const { isValidPkey, isPassRequired } = validatePkeyAndPass(key, password);
|
|
|
|
return (
|
|
<section className="col-md-4 col-sm-6">
|
|
<div id="selectedTypeKey">
|
|
<h4>{translate('ADD_Radio_3')}</h4>
|
|
<div className="form-group">
|
|
<textarea
|
|
id="aria-private-key"
|
|
className={`form-control ${
|
|
isValidPkey ? 'is-valid' : 'is-invalid'
|
|
}`}
|
|
value={key}
|
|
onChange={this.onPkeyChange}
|
|
onKeyDown={this.onKeyDown}
|
|
placeholder={translateRaw('x_PrivKey2')}
|
|
rows={4}
|
|
/>
|
|
</div>
|
|
{isValidPkey &&
|
|
isPassRequired && (
|
|
<div className="form-group">
|
|
<p>{translate('ADD_Label_3')}</p>
|
|
<input
|
|
className={`form-control ${
|
|
password.length > 0 ? 'is-valid' : 'is-invalid'
|
|
}`}
|
|
value={password}
|
|
onChange={this.onPasswordChange}
|
|
onKeyDown={this.onKeyDown}
|
|
placeholder={translateRaw('x_Password')}
|
|
type="password"
|
|
/>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
|
|
public onPkeyChange = (e: React.SyntheticEvent<HTMLTextAreaElement>) => {
|
|
const pkey = (e.target as HTMLInputElement).value;
|
|
const pass = this.props.value.password;
|
|
const { fixedPkey, valid } = validatePkeyAndPass(pkey, pass);
|
|
|
|
this.props.onChange({ ...this.props.value, key: fixedPkey, valid });
|
|
};
|
|
|
|
public onPasswordChange = (e: React.SyntheticEvent<HTMLInputElement>) => {
|
|
const pkey = this.props.value.key;
|
|
const pass = (e.target as HTMLInputElement).value;
|
|
const { valid } = validatePkeyAndPass(pkey, pass);
|
|
|
|
this.props.onChange({
|
|
...this.props.value,
|
|
password: pass,
|
|
valid
|
|
});
|
|
};
|
|
|
|
public onKeyDown = (e: any) => {
|
|
if (e.keyCode === 13) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
this.props.onUnlock();
|
|
}
|
|
};
|
|
}
|