diff options
Diffstat (limited to 'server/helpers/peertube-crypto.ts')
-rw-r--r-- | server/helpers/peertube-crypto.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/helpers/peertube-crypto.ts b/server/helpers/peertube-crypto.ts index a0c9112b9..313c12e26 100644 --- a/server/helpers/peertube-crypto.ts +++ b/server/helpers/peertube-crypto.ts | |||
@@ -43,7 +43,8 @@ function isSignatureVerified (fromActor: ActorModel, signedDocument: object) { | |||
43 | function signObject (byActor: ActorModel, data: any) { | 43 | function signObject (byActor: ActorModel, data: any) { |
44 | const options = { | 44 | const options = { |
45 | privateKeyPem: byActor.privateKey, | 45 | privateKeyPem: byActor.privateKey, |
46 | creator: byActor.url | 46 | creator: byActor.url, |
47 | algorithm: 'RsaSignature2017' | ||
47 | } | 48 | } |
48 | 49 | ||
49 | return jsig.promises.sign(data, options) | 50 | return jsig.promises.sign(data, options) |