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

Ошибка в функции нормализации алгоритмов #22

Open
W0rthLes opened this issue Mar 21, 2023 · 0 comments

Comments

@W0rthLes
Copy link

При попытке создать новый ключ из Мастер ключа с помощью gostCrypto.subtle.deriveKey() столкнулся с ошибкой.
Сначала импортируется Мастер ключ с помощью importKey:

const MasterKeyImported = await new gostCrypto.subtle.importKey(
        'raw',
        master_key,
        {
            name: 'GOST R 34.11',
            mode: 'KDF',
            label: new ArrayBuffer(0),
            context: new ArrayBuffer(0)},
        true,
        ['deriveKey']
    );

После чего произовдится формирование нового ключа:

const newKey = await new gostCrypto.subtle.deriveKey(
        {
            name: 'GOST R 34.11',
            mode: 'KDF',
            context: new ArrayBuffer(0)
        },
        MasterKeyImported,
        {
            name: 'GOST R 34.12',
            version: 2015,
            length: 256,
            block: 'CBC',
            padding: 'PKCS7'
        },
        true,
        ['encrypt', 'decrypt']
    )

В процессе работы программы метод GostDigest.deriveBitsKDF выдает ошибку в функции buffer.
Сам экземпляр класса GostDigest выглядит следующим образом:

GostDigest {
  name: 'GOST R 34.11-12-256-KDF/CP',
  procreator: 'CP',
  bitLength: 256,
  digest: [Function (anonymous)],
  keySize: 32,
  deriveKey: [Function: deriveKey],
  deriveBits: [Function: deriveBitsKDF],
  label: ArrayBuffer { [Uint8Contents]: <>, byteLength: 0 },
  context: undefined
}

Неопределенный тип параметра context указывает на ошибку при сборке экземпляра. Дебаг мод показал, что в функции normalize содержится опечатка, которая не дает параметру context инициализироваться:

algorithm.contex && (na.context = algorithm.contex);

Прошу исправить такой досадный баг

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant