Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Authentication (0.18 sec)

  1. android/guava/src/com/google/common/hash/MacHashFunction.java

          }
        }
        return new MacHasher(getMac(prototype.getAlgorithm(), key));
      }
    
      @Override
      public String toString() {
        return toString;
      }
    
      /** Hasher that updates a {@link Mac} (message authentication code). */
      private static final class MacHasher extends AbstractByteHasher {
        private final Mac mac;
        private boolean done;
    
        private MacHasher(Mac mac) {
          this.mac = mac;
        }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 15 22:31:55 GMT 2022
    - 3.6K bytes
    - Viewed (0)
  2. .github/workflows/scorecard.yml

              # - you are installing Scorecard on a *private* repository
              # To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-pat.
              # repo_token: ${{ secrets.SCORECARD_TOKEN }}
    
              # Public repositories:
              #   - Publish results to OpenSSF REST API for easy access by consumers
    Others
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 29 23:37:56 GMT 2024
    - 2.9K bytes
    - Viewed (0)
Back to top