PeerTube/server/helpers/peertube-crypto.ts

96 lines
2.6 KiB
TypeScript
Raw Normal View History

import { Request } from 'express'
import { BCRYPT_SALT_SIZE, HTTP_SIGNATURE, PRIVATE_RSA_KEY_SIZE } from '../initializers'
2017-12-14 17:38:41 +01:00
import { ActorModel } from '../models/activitypub/actor'
2017-11-23 17:53:38 +01:00
import { bcryptComparePromise, bcryptGenSaltPromise, bcryptHashPromise, createPrivateKey, getPublicKey } from './core-utils'
2017-11-17 15:20:42 +01:00
import { jsig } from './custom-jsonld-signature'
2017-11-23 17:53:38 +01:00
import { logger } from './logger'
const httpSignature = require('http-signature')
2017-11-09 17:51:58 +01:00
async function createPrivateAndPublicKeys () {
logger.info('Generating a RSA key...')
2017-11-09 17:51:58 +01:00
const { key } = await createPrivateKey(PRIVATE_RSA_KEY_SIZE)
const { publicKey } = await getPublicKey(key)
2017-11-09 17:51:58 +01:00
return { privateKey: key, publicKey }
}
// User password checks
function comparePassword (plainPassword: string, hashPassword: string) {
return bcryptComparePromise(plainPassword, hashPassword)
}
async function cryptPassword (password: string) {
const salt = await bcryptGenSaltPromise(BCRYPT_SALT_SIZE)
return bcryptHashPromise(password, salt)
}
// HTTP Signature
function isHTTPSignatureVerified (httpSignatureParsed: any, actor: ActorModel) {
return httpSignature.verifySignature(httpSignatureParsed, actor.publicKey) === true
}
function parseHTTPSignature (req: Request) {
return httpSignature.parse(req, { authorizationHeaderName: HTTP_SIGNATURE.HEADER_NAME })
}
// JSONLD
function isJsonLDSignatureVerified (fromActor: ActorModel, signedDocument: any) {
2017-11-09 17:51:58 +01:00
const publicKeyObject = {
'@context': jsig.SECURITY_CONTEXT_URL,
id: fromActor.url,
type: 'CryptographicKey',
2017-12-14 17:38:41 +01:00
owner: fromActor.url,
publicKeyPem: fromActor.publicKey
}
2017-11-09 17:51:58 +01:00
const publicKeyOwnerObject = {
'@context': jsig.SECURITY_CONTEXT_URL,
id: fromActor.url,
2017-11-09 17:51:58 +01:00
publicKey: [ publicKeyObject ]
}
2017-11-09 17:51:58 +01:00
const options = {
publicKey: publicKeyObject,
publicKeyOwner: publicKeyOwnerObject
}
return jsig.promises
.verify(signedDocument, options)
.then((result: { verified: boolean }) => {
logger.info('coucou', result)
return result.verified
})
.catch(err => {
logger.error('Cannot check signature.', { err })
return false
})
2016-08-25 17:57:37 +02:00
}
function signJsonLDObject (byActor: ActorModel, data: any) {
2017-11-09 17:51:58 +01:00
const options = {
2017-12-14 17:38:41 +01:00
privateKeyPem: byActor.privateKey,
2017-12-18 11:53:04 +01:00
creator: byActor.url,
algorithm: 'RsaSignature2017'
}
return jsig.promises.sign(data, options)
2017-11-09 17:51:58 +01:00
}
// ---------------------------------------------------------------------------
2016-02-05 18:03:20 +01:00
2017-05-15 22:22:03 +02:00
export {
parseHTTPSignature,
isHTTPSignatureVerified,
isJsonLDSignatureVerified,
2017-05-15 22:22:03 +02:00
comparePassword,
2017-11-09 17:51:58 +01:00
createPrivateAndPublicKeys,
2017-05-15 22:22:03 +02:00
cryptPassword,
signJsonLDObject
}