2017-11-23 11:53:38 -05:00
|
|
|
import { BCRYPT_SALT_SIZE, PRIVATE_RSA_KEY_SIZE } from '../initializers'
|
2017-12-14 11:38:41 -05:00
|
|
|
import { ActorModel } from '../models/activitypub/actor'
|
2017-11-23 11:53:38 -05:00
|
|
|
import { bcryptComparePromise, bcryptGenSaltPromise, bcryptHashPromise, createPrivateKey, getPublicKey } from './core-utils'
|
2017-11-17 09:20:42 -05:00
|
|
|
import { jsig } from './custom-jsonld-signature'
|
2017-11-23 11:53:38 -05:00
|
|
|
import { logger } from './logger'
|
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-12-14 11:38:41 -05:00
|
|
|
function isSignatureVerified (fromActor: ActorModel, signedDocument: object) {
|
2017-11-09 11:51:58 -05:00
|
|
|
const publicKeyObject = {
|
|
|
|
'@context': jsig.SECURITY_CONTEXT_URL,
|
2017-12-14 11:38:41 -05:00
|
|
|
'@id': fromActor.url,
|
2017-11-09 11:51:58 -05:00
|
|
|
'@type': 'CryptographicKey',
|
2017-12-14 11:38:41 -05:00
|
|
|
owner: fromActor.url,
|
|
|
|
publicKeyPem: fromActor.publicKey
|
2017-01-04 16:23:07 -05:00
|
|
|
}
|
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
const publicKeyOwnerObject = {
|
|
|
|
'@context': jsig.SECURITY_CONTEXT_URL,
|
2017-12-14 11:38:41 -05:00
|
|
|
'@id': fromActor.url,
|
2017-11-09 11:51:58 -05:00
|
|
|
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-16 05:08:25 -05:00
|
|
|
return jsig.promises.verify(signedDocument, options)
|
2017-11-09 11:51:58 -05:00
|
|
|
.catch(err => {
|
2018-03-26 09:54:13 -04:00
|
|
|
logger.error('Cannot check signature.', { err })
|
2017-11-09 11:51:58 -05:00
|
|
|
return false
|
|
|
|
})
|
2016-08-25 11:57:37 -04:00
|
|
|
}
|
|
|
|
|
2017-12-14 11:38:41 -05:00
|
|
|
function signObject (byActor: ActorModel, data: any) {
|
2017-11-09 11:51:58 -05:00
|
|
|
const options = {
|
2017-12-14 11:38:41 -05:00
|
|
|
privateKeyPem: byActor.privateKey,
|
2017-12-18 05:53:04 -05:00
|
|
|
creator: byActor.url,
|
|
|
|
algorithm: 'RsaSignature2017'
|
2017-10-25 10:03:33 -04:00
|
|
|
}
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2017-11-16 05:08:25 -05:00
|
|
|
return jsig.promises.sign(data, options)
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|