OCPBUGS-44505: remove crypto-browserify library and use Crypto instead#14507
OCPBUGS-44505: remove crypto-browserify library and use Crypto instead#14507Mylanos wants to merge 2 commits intoopenshift:mainfrom
Conversation
|
@Mylanos: This pull request references Jira Issue OCPBUGS-44505, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. DetailsIn response to this: Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
abdbd47 to
c771cf1
Compare
|
/jira refresh |
|
@Mylanos: This pull request references Jira Issue OCPBUGS-44505, which is valid. The bug has been moved to the POST state. 3 validation(s) were run on this bug
Requesting review from QA contact: DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
/retest |
2 similar comments
|
/retest |
|
/retest |
|
/retest-required Remaining retests: 0 against base HEAD d878879 and 2 for PR HEAD c771cf1d2e1dac5526e99c783bc3e402c89210c5 in total |
10 similar comments
|
/retest-required Remaining retests: 0 against base HEAD d878879 and 2 for PR HEAD c771cf1d2e1dac5526e99c783bc3e402c89210c5 in total |
|
/retest-required Remaining retests: 0 against base HEAD d878879 and 2 for PR HEAD c771cf1d2e1dac5526e99c783bc3e402c89210c5 in total |
|
/retest-required Remaining retests: 0 against base HEAD d878879 and 2 for PR HEAD c771cf1d2e1dac5526e99c783bc3e402c89210c5 in total |
|
/retest-required Remaining retests: 0 against base HEAD d878879 and 2 for PR HEAD c771cf1d2e1dac5526e99c783bc3e402c89210c5 in total |
|
/retest-required Remaining retests: 0 against base HEAD d878879 and 2 for PR HEAD c771cf1d2e1dac5526e99c783bc3e402c89210c5 in total |
|
/retest-required Remaining retests: 0 against base HEAD d878879 and 2 for PR HEAD c771cf1d2e1dac5526e99c783bc3e402c89210c5 in total |
|
/retest-required Remaining retests: 0 against base HEAD d878879 and 2 for PR HEAD c771cf1d2e1dac5526e99c783bc3e402c89210c5 in total |
|
/retest-required Remaining retests: 0 against base HEAD d878879 and 2 for PR HEAD c771cf1d2e1dac5526e99c783bc3e402c89210c5 in total |
|
/retest-required Remaining retests: 0 against base HEAD d878879 and 2 for PR HEAD c771cf1d2e1dac5526e99c783bc3e402c89210c5 in total |
|
/retest-required Remaining retests: 0 against base HEAD d878879 and 2 for PR HEAD c771cf1d2e1dac5526e99c783bc3e402c89210c5 in total |
|
@logonoff: This pull request references Jira Issue OCPBUGS-44505, which is valid. 3 validation(s) were run on this bug
Requesting review from QA contact: DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
/retest |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: logonoff, Mylanos, spadgett The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
/verified later @yapei |
|
@logonoff: This PR has been marked to be verified later by DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
/hold Revision 51d84f5 was retested 3 times: holding |
|
/retest |
|
@Mylanos: The following test failed, say
Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
|
/jira refresh The requirements for Jira bugs have changed (Jira issues linked to PRs on main branch need to target different OCP), recalculating validity. |
|
@openshift-bot: This pull request references Jira Issue OCPBUGS-44505, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
Important Review skippedAuto reviews are limited based on label configuration. 🚫 Review skipped — only excluded labels are configured. (1)
Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the ✨ Finishing touches🧪 Generate unit tests (beta)
Comment |
|
/close Removed in #15892 but in another way |
|
PR needs rebase. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
|
@logonoff: Closed this PR. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
|
@Mylanos: This pull request references Jira Issue OCPBUGS-44505. The bug has been updated to no longer refer to the pull request using the external bug tracker. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |

This PR replaces the use of
crypto-browserifyfor generating a hash for a given username with the nativeCryptoobject and itssubtle.digestmethod, which is supported in all browsers compatible with v4.21. This way we not only remove unnecessary dependencies, but also use browser-optimized native cryptographic functionality.Changes in this PR:
crypto-browserify's createHash function with a newly implementedgenerateHashfunction that utilizes browser-nativeCrypto.subtle.digest.