Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Некорректная генерация Sec-Vtrans-Token #36

Closed
thedanill opened this issue Nov 5, 2024 · 1 comment
Closed

Некорректная генерация Sec-Vtrans-Token #36

thedanill opened this issue Nov 5, 2024 · 1 comment
Labels
bug Something isn't working fixed

Comments

@thedanill
Copy link

Токен состоит из четырёх элементов: ${sign}:${uuid}:${path}:${version}.
Последние три части генерируются корректно, а вот с подписью есть проблема — вместо подписи токена используется подпись запроса:

const sign = await getSignature(body);
<..>
"Sec-Vtrans-Token": `${sign}:${uuid}:${this.paths.videoTranslationAudio}:${this.componentVersion}`

На самом деле, подпись токена — это HMAC-SHA256 с ключом config.hmac, но от строки '${uuid}:${this.paths.videoTranslationAudio}:${this.componentVersion}'.

Сейчас она не проверяется сервером, но это может измениться в ближайшем будущем.

@ilyhalight
Copy link
Contributor

Исправил недоработку

@ilyhalight ilyhalight added bug Something isn't working fixed labels Nov 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working fixed
Projects
None yet
Development

No branches or pull requests

2 participants