PeerTube/server/helpers/peertube-crypto.ts

83 lines
2.0 KiB
TypeScript
Raw Normal View History

import * as jsonld from 'jsonld'
2017-11-09 17:51:58 +01:00
import * as jsig from 'jsonld-signatures'
jsig.use('jsonld', jsonld)
2017-05-15 22:22:03 +02:00
import {
2017-11-09 17:51:58 +01:00
PRIVATE_RSA_KEY_SIZE,
BCRYPT_SALT_SIZE
2017-05-15 22:22:03 +02:00
} from '../initializers'
import {
bcryptComparePromise,
bcryptGenSaltPromise,
bcryptHashPromise,
2017-11-09 17:51:58 +01:00
createPrivateKey,
getPublicKey
} from './core-utils'
2017-05-15 22:22:03 +02:00
import { logger } from './logger'
2017-11-09 17:51:58 +01:00
import { AccountInstance } from '../models/account/account-interface'
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 }
}
2017-11-09 17:51:58 +01: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-11-09 17:51:58 +01:00
const publicKeyOwnerObject = {
'@context': jsig.SECURITY_CONTEXT_URL,
'@id': fromAccount.url,
publicKey: [ publicKeyObject ]
}
2017-11-09 17:51:58 +01:00
const options = {
publicKey: publicKeyObject,
publicKeyOwner: publicKeyOwnerObject
}
return jsig.promises.verify(signedDocument, options)
2017-11-09 17:51:58 +01:00
.catch(err => {
logger.error('Cannot check signature.', err)
return false
})
2016-08-25 17:57:37 +02:00
}
2017-11-09 17:51:58 +01:00
function signObject (byAccount: AccountInstance, data: any) {
const options = {
privateKeyPem: byAccount.privateKey,
creator: byAccount.url
}
return jsig.promises.sign(data, options)
2017-11-09 17:51:58 +01:00
}
function comparePassword (plainPassword: string, hashPassword: string) {
return bcryptComparePromise(plainPassword, hashPassword)
}
2016-02-05 18:03:20 +01:00
async function cryptPassword (password: string) {
const salt = await bcryptGenSaltPromise(BCRYPT_SALT_SIZE)
2017-10-31 16:31:24 +01:00
return bcryptHashPromise(password, salt)
2016-08-25 17:57:37 +02:00
}
// ---------------------------------------------------------------------------
2016-02-05 18:03:20 +01:00
2017-05-15 22:22:03 +02:00
export {
2017-11-09 17:51:58 +01:00
isSignatureVerified,
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,
2017-11-09 17:51:58 +01:00
signObject
}