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

Added NO-HASH option for ECDSA, for cases the data is already hashed #82

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/mechs/ec/crypto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,9 @@ export class EcCrypto implements types.IContainer {
}

public prepareData(hashAlgorithm: string, data: Buffer): Buffer {
if (hashAlgorithm === "NO-HASH") {
return utils.prepareData(data)
} else {
// use nodejs crypto for digest calculating
return utils.digest(hashAlgorithm.replace("-", ""), data);
}
Expand Down
3 changes: 3 additions & 0 deletions src/mechs/ec/ec_dsa.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ export class EcdsaProvider extends core.EcdsaProvider implements types.IContaine
case "SHA-512":
algName = "ECDSA_SHA512";
break;
case "NO-HASH":
algName = "ECDSA";
break;
default:
throw new core.OperationError(`Cannot create PKCS11 mechanism from algorithm '${hashAlg}'`);
}
Expand Down