2017-11-09 11:51:58 -05:00
|
|
|
import * as jsig from 'jsonld-signatures'
|
2017-05-15 16:22:03 -04:00
|
|
|
|
|
|
|
import {
|
2017-11-09 11:51:58 -05:00
|
|
|
PRIVATE_RSA_KEY_SIZE,
|
|
|
|
BCRYPT_SALT_SIZE
|
2017-05-15 16:22:03 -04:00
|
|
|
} from '../initializers'
|
2017-07-05 07:26:25 -04:00
|
|
|
import {
|
|
|
|
bcryptComparePromise,
|
|
|
|
bcryptGenSaltPromise,
|
|
|
|
bcryptHashPromise,
|
2017-11-09 11:51:58 -05:00
|
|
|
createPrivateKey,
|
|
|
|
getPublicKey,
|
|
|
|
jsonldSignPromise,
|
|
|
|
jsonldVerifyPromise
|
2017-07-05 07:26:25 -04:00
|
|
|
} from './core-utils'
|
2017-05-15 16:22:03 -04:00
|
|
|
import { logger } from './logger'
|
2017-11-09 11:51:58 -05:00
|
|
|
import { AccountInstance } from '../models/account/account-interface'
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
async function createPrivateAndPublicKeys () {
|
|
|
|
logger.info('Generating a RSA key...')
|
2017-01-04 16:23:07 -05:00
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
const { key } = await createPrivateKey(PRIVATE_RSA_KEY_SIZE)
|
|
|
|
const { publicKey } = await getPublicKey(key)
|
2017-01-04 16:23:07 -05:00
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
return { privateKey: key, publicKey }
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
function isSignatureVerified (fromAccount: AccountInstance, signedDocument: object) {
|
|
|
|
const publicKeyObject = {
|
|
|
|
'@context': jsig.SECURITY_CONTEXT_URL,
|
|
|
|
'@id': fromAccount.url,
|
|
|
|
'@type': 'CryptographicKey',
|
|
|
|
owner: fromAccount.url,
|
|
|
|
publicKeyPem: fromAccount.publicKey
|
2017-01-04 16:23:07 -05:00
|
|
|
}
|
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
const publicKeyOwnerObject = {
|
|
|
|
'@context': jsig.SECURITY_CONTEXT_URL,
|
|
|
|
'@id': fromAccount.url,
|
|
|
|
publicKey: [ publicKeyObject ]
|
|
|
|
}
|
2017-01-04 16:23:07 -05:00
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
const options = {
|
|
|
|
publicKey: publicKeyObject,
|
|
|
|
publicKeyOwner: publicKeyOwnerObject
|
|
|
|
}
|
2017-01-04 16:23:07 -05:00
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
return jsonldVerifyPromise(signedDocument, options)
|
|
|
|
.catch(err => {
|
|
|
|
logger.error('Cannot check signature.', err)
|
|
|
|
return false
|
|
|
|
})
|
2016-08-25 11:57:37 -04:00
|
|
|
}
|
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
function signObject (byAccount: AccountInstance, data: any) {
|
|
|
|
const options = {
|
|
|
|
privateKeyPem: byAccount.privateKey,
|
|
|
|
creator: byAccount.url
|
2017-10-25 10:03:33 -04:00
|
|
|
}
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
return jsonldSignPromise(data, options)
|
|
|
|
}
|
|
|
|
|
|
|
|
function comparePassword (plainPassword: string, hashPassword: string) {
|
|
|
|
return bcryptComparePromise(plainPassword, hashPassword)
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
2016-02-05 12:03:20 -05:00
|
|
|
|
2017-10-25 10:03:33 -04:00
|
|
|
async function cryptPassword (password: string) {
|
|
|
|
const salt = await bcryptGenSaltPromise(BCRYPT_SALT_SIZE)
|
|
|
|
|
2017-10-31 11:31:24 -04:00
|
|
|
return bcryptHashPromise(password, salt)
|
2016-08-25 11:57:37 -04:00
|
|
|
}
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-02-05 12:03:20 -05:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
2017-11-09 11:51:58 -05:00
|
|
|
isSignatureVerified,
|
2017-05-15 16:22:03 -04:00
|
|
|
comparePassword,
|
2017-11-09 11:51:58 -05:00
|
|
|
createPrivateAndPublicKeys,
|
2017-05-15 16:22:03 -04:00
|
|
|
cryptPassword,
|
2017-11-09 11:51:58 -05:00
|
|
|
signObject
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|