]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/helpers/peertube-crypto.ts
Fix redundancy exceeding the limit
[github/Chocobozzz/PeerTube.git] / server / helpers / peertube-crypto.ts
CommitLineData
41f2ebae 1import { Request } from 'express'
74dc3bca 2import { BCRYPT_SALT_SIZE, HTTP_SIGNATURE, PRIVATE_RSA_KEY_SIZE } from '../initializers/constants'
50d6de9c 3import { ActorModel } from '../models/activitypub/actor'
8d2be0ed 4import { createPrivateKey, getPublicKey, promisify1, promisify2, sha256 } from './core-utils'
df66d815 5import { jsig, jsonld } from './custom-jsonld-signature'
8d468a16 6import { logger } from './logger'
df66d815
C
7import { cloneDeep } from 'lodash'
8import { createVerify } from 'crypto'
9import { buildDigest } from '../lib/job-queue/handlers/utils/activitypub-http-utils'
8d2be0ed
C
10import * as bcrypt from 'bcrypt'
11
12const bcryptComparePromise = promisify2<any, string, boolean>(bcrypt.compare)
13const bcryptGenSaltPromise = promisify1<number, string>(bcrypt.genSalt)
14const bcryptHashPromise = promisify2<any, string | number, string>(bcrypt.hash)
9f10b292 15
41f2ebae
C
16const httpSignature = require('http-signature')
17
e4f97bab
C
18async function createPrivateAndPublicKeys () {
19 logger.info('Generating a RSA key...')
bdfbd4f1 20
e4f97bab
C
21 const { key } = await createPrivateKey(PRIVATE_RSA_KEY_SIZE)
22 const { publicKey } = await getPublicKey(key)
bdfbd4f1 23
e4f97bab 24 return { privateKey: key, publicKey }
9f10b292
C
25}
26
41f2ebae
C
27// User password checks
28
29function comparePassword (plainPassword: string, hashPassword: string) {
30 return bcryptComparePromise(plainPassword, hashPassword)
31}
32
33async function cryptPassword (password: string) {
34 const salt = await bcryptGenSaltPromise(BCRYPT_SALT_SIZE)
35
36 return bcryptHashPromise(password, salt)
37}
38
39// HTTP Signature
40
df66d815
C
41function isHTTPSignatureDigestValid (rawBody: Buffer, req: Request): boolean {
42 if (req.headers[HTTP_SIGNATURE.HEADER_NAME] && req.headers['digest']) {
43 return buildDigest(rawBody.toString()) === req.headers['digest']
44 }
45
46 return true
47}
48
49function isHTTPSignatureVerified (httpSignatureParsed: any, actor: ActorModel): boolean {
41f2ebae
C
50 return httpSignature.verifySignature(httpSignatureParsed, actor.publicKey) === true
51}
52
df66d815
C
53function parseHTTPSignature (req: Request, clockSkew?: number) {
54 return httpSignature.parse(req, { authorizationHeaderName: HTTP_SIGNATURE.HEADER_NAME, clockSkew })
41f2ebae
C
55}
56
57// JSONLD
58
df66d815
C
59async function isJsonLDSignatureVerified (fromActor: ActorModel, signedDocument: any): Promise<boolean> {
60 if (signedDocument.signature.type === 'RsaSignature2017') {
61 // Mastodon algorithm
62 const res = await isJsonLDRSA2017Verified(fromActor, signedDocument)
63 // Success? If no, try with our library
64 if (res === true) return true
65 }
66
e4f97bab
C
67 const publicKeyObject = {
68 '@context': jsig.SECURITY_CONTEXT_URL,
41f2ebae 69 id: fromActor.url,
df66d815 70 type: 'CryptographicKey',
50d6de9c
C
71 owner: fromActor.url,
72 publicKeyPem: fromActor.publicKey
bdfbd4f1
C
73 }
74
e4f97bab
C
75 const publicKeyOwnerObject = {
76 '@context': jsig.SECURITY_CONTEXT_URL,
41f2ebae 77 id: fromActor.url,
e4f97bab
C
78 publicKey: [ publicKeyObject ]
79 }
bdfbd4f1 80
e4f97bab
C
81 const options = {
82 publicKey: publicKeyObject,
83 publicKeyOwner: publicKeyOwnerObject
84 }
bdfbd4f1 85
41f2ebae
C
86 return jsig.promises
87 .verify(signedDocument, options)
40ed9f6a 88 .then((result: { verified: boolean }) => result.verified)
41f2ebae
C
89 .catch(err => {
90 logger.error('Cannot check signature.', { err })
91 return false
92 })
26d7d31b
C
93}
94
df66d815
C
95// Backward compatibility with "other" implementations
96async function isJsonLDRSA2017Verified (fromActor: ActorModel, signedDocument: any) {
97 function hash (obj: any): Promise<any> {
98 return jsonld.promises
99 .normalize(obj, {
100 algorithm: 'URDNA2015',
101 format: 'application/n-quads'
102 })
103 .then(res => sha256(res))
104 }
105
106 const signatureCopy = cloneDeep(signedDocument.signature)
107 Object.assign(signatureCopy, {
108 '@context': [
109 'https://w3id.org/security/v1',
110 { RsaSignature2017: 'https://w3id.org/security#RsaSignature2017' }
111 ]
112 })
113 delete signatureCopy.type
114 delete signatureCopy.id
115 delete signatureCopy.signatureValue
116
117 const docWithoutSignature = cloneDeep(signedDocument)
118 delete docWithoutSignature.signature
119
120 const [ documentHash, optionsHash ] = await Promise.all([
121 hash(docWithoutSignature),
122 hash(signatureCopy)
123 ])
124
125 const toVerify = optionsHash + documentHash
126
127 const verify = createVerify('RSA-SHA256')
128 verify.update(toVerify, 'utf8')
129
130 return verify.verify(fromActor.publicKey, signedDocument.signature.signatureValue, 'base64')
131}
132
41f2ebae 133function signJsonLDObject (byActor: ActorModel, data: any) {
e4f97bab 134 const options = {
50d6de9c 135 privateKeyPem: byActor.privateKey,
ce33ee01
C
136 creator: byActor.url,
137 algorithm: 'RsaSignature2017'
f5028693 138 }
9f10b292 139
efc32059 140 return jsig.promises.sign(data, options)
e4f97bab
C
141}
142
9f10b292 143// ---------------------------------------------------------------------------
dac0a531 144
65fcc311 145export {
df66d815 146 isHTTPSignatureDigestValid,
41f2ebae
C
147 parseHTTPSignature,
148 isHTTPSignatureVerified,
149 isJsonLDSignatureVerified,
65fcc311 150 comparePassword,
e4f97bab 151 createPrivateAndPublicKeys,
65fcc311 152 cryptPassword,
41f2ebae 153 signJsonLDObject
9f10b292 154}
8d2be0ed
C
155
156// ---------------------------------------------------------------------------