X Tutup
The Wayback Machine - https://web.archive.org/web/20250814212455/https://github.com/nodejs/node/pull/59332
Skip to content

doc: rename x509.extKeyUsage to x509.keyUsage #59332

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

Merged
merged 1 commit into from
Aug 9, 2025

Conversation

panva
Copy link
Member

@panva panva commented Aug 2, 2025

This partially reverts #50603. It keeps the description but reverts to use the actual property name. #50603 should not have landed.

get keyUsage() {
let value = this[kInternalState].get('keyUsage');
if (value === undefined) {
value = this[kHandle].keyUsage();
this[kInternalState].set('keyUsage', value);
}
return value;
}

@panva panva added crypto Issues and PRs related to the crypto subsystem. doc Issues and PRs related to the documentations. labels Aug 2, 2025
@nodejs-github-bot
Copy link
Collaborator

Review requested:

  • @nodejs/crypto

@panva panva added author ready PRs that have at least one approval, no pending requests for changes, and a CI started. commit-queue Add this label to land a pull request using GitHub Actions. labels Aug 3, 2025
@nodejs-github-bot nodejs-github-bot removed the commit-queue Add this label to land a pull request using GitHub Actions. label Aug 9, 2025
@nodejs-github-bot nodejs-github-bot merged commit a93c1c0 into nodejs:main Aug 9, 2025
31 checks passed
@nodejs-github-bot
Copy link
Collaborator

Landed in a93c1c0

@panva panva deleted the doc-fix-x509-usage branch August 9, 2025 18:44
RafaelGSS pushed a commit that referenced this pull request Aug 11, 2025
PR-URL: #59332
Reviewed-By: James M Snell <jasnell@gmail.com>
RafaelGSS pushed a commit that referenced this pull request Aug 12, 2025
PR-URL: #59332
Reviewed-By: James M Snell <jasnell@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
author ready PRs that have at least one approval, no pending requests for changes, and a CI started. crypto Issues and PRs related to the crypto subsystem. doc Issues and PRs related to the documentations.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants
X Tutup