You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
3.7 KiB
TypeScript
117 lines
3.7 KiB
TypeScript
import httpSignature from '@peertube/http-signature'
|
|||
import { sha256 } from '@peertube/peertube-node-utils'
|
|||
import { createCipheriv, createDecipheriv } from 'crypto'
|
|||
import { Request } from 'express'
|
|||
import { BCRYPT_SALT_SIZE, ENCRYPTION, HTTP_SIGNATURE, PRIVATE_RSA_KEY_SIZE } from '../initializers/constants.js'
|
|||
import { MActor } from '../types/models/index.js'
|
|||
import { generateRSAKeyPairPromise, randomBytesPromise, scryptPromise } from './core-utils.js'
|
|||
import { logger } from './logger.js'
|
|||
|
|||
function createPrivateAndPublicKeys () {
|
|||
logger.info('Generating a RSA key...')
|
|||
|
|||
return generateRSAKeyPairPromise(PRIVATE_RSA_KEY_SIZE)
|
|||
}
|
|||
|
|||
// ---------------------------------------------------------------------------
|
|||
// User password checks
|
|||
// ---------------------------------------------------------------------------
|
|||
|
|||
async function comparePassword (plainPassword: string, hashPassword: string) {
|
|||
if (!plainPassword) return false
|
|||
|
|||
const { compare } = await import('bcrypt')
|
|||
|
|||
return compare(plainPassword, hashPassword)
|
|||
}
|
|||
|
|||
async function cryptPassword (password: string) {
|
|||
const { genSalt, hash } = await import('bcrypt')
|
|||
|
|||
const salt = await genSalt(BCRYPT_SALT_SIZE)
|
|||
|
|||
return hash(password, salt)
|
|||
}
|
|||
|
|||
// ---------------------------------------------------------------------------
|
|||
// HTTP Signature
|
|||
// ---------------------------------------------------------------------------
|
|||
|
|||
function isHTTPSignatureDigestValid (rawBody: Buffer, req: Request): boolean {
|
|||
if (req.headers[HTTP_SIGNATURE.HEADER_NAME] && req.headers['digest']) {
|
|||
return buildDigest(rawBody.toString()) === req.headers['digest']
|
|||
}
|
|||
|
|||
return true
|
|||
}
|
|||
|
|||
function isHTTPSignatureVerified (httpSignatureParsed: any, actor: MActor): boolean {
|
|||
return httpSignature.verifySignature(httpSignatureParsed, actor.publicKey) === true
|
|||
}
|
|||
|
|||
function parseHTTPSignature (req: Request, clockSkew?: number) {
|
|||
const requiredHeaders = req.method === 'POST'
|
|||
? [ '(request-target)', 'host', 'digest' ]
|
|||
: [ '(request-target)', 'host' ]
|
|||
|
|||
const parsed = httpSignature.parse(req, { clockSkew, headers: requiredHeaders })
|
|||
|
|||
const parsedHeaders = parsed.params.headers
|
|||
if (!parsedHeaders.includes('date') && !parsedHeaders.includes('(created)')) {
|
|||
throw new Error(`date or (created) must be included in signature`)
|
|||
}
|
|||
|
|||
return parsed
|
|||
}
|
|||
|
|||
// ---------------------------------------------------------------------------
|
|||
|
|||
function buildDigest (body: any) {
|
|||
const rawBody = typeof body === 'string' ? body : JSON.stringify(body)
|
|||
|
|||
return 'SHA-256=' + sha256(rawBody, 'base64')
|
|||
}
|
|||
|
|||
// ---------------------------------------------------------------------------
|
|||
// Encryption
|
|||
// ---------------------------------------------------------------------------
|
|||
|
|||
async function encrypt (str: string, secret: string) {
|
|||
const iv = await randomBytesPromise(ENCRYPTION.IV)
|
|||
|
|||
const key = await scryptPromise(secret, ENCRYPTION.SALT, 32)
|
|||
const cipher = createCipheriv(ENCRYPTION.ALGORITHM, key, iv)
|
|||
|
|||
let encrypted = iv.toString(ENCRYPTION.ENCODING) + ':'
|
|||
encrypted += cipher.update(str, 'utf8', ENCRYPTION.ENCODING)
|
|||
encrypted += cipher.final(ENCRYPTION.ENCODING)
|
|||
|
|||
return encrypted
|
|||
}
|
|||
|
|||
async function decrypt (encryptedArg: string, secret: string) {
|
|||
const [ ivStr, encryptedStr ] = encryptedArg.split(':')
|
|||
|
|||
const iv = Buffer.from(ivStr, 'hex')
|
|||
const key = await scryptPromise(secret, ENCRYPTION.SALT, 32)
|
|||
|
|||
const decipher = createDecipheriv(ENCRYPTION.ALGORITHM, key, iv)
|
|||
|
|||
return decipher.update(encryptedStr, ENCRYPTION.ENCODING, 'utf8') + decipher.final('utf8')
|
|||
}
|
|||
|
|||
// ---------------------------------------------------------------------------
|
|||
|
|||
export {
|
|||
isHTTPSignatureDigestValid,
|
|||
parseHTTPSignature,
|
|||
isHTTPSignatureVerified,
|
|||
buildDigest,
|
|||
comparePassword,
|
|||
createPrivateAndPublicKeys,
|
|||
cryptPassword,
|
|||
|
|||
encrypt,
|
|||
decrypt
|
|||
}
|