Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sharedSecret (0.06 sec)

  1. proguard/base.pro

    # optimized code would preclude lots of optimization, like converting enums
    # into ints.
    
    # Throwables uses internal APIs for lazy stack trace resolution
    -dontnote sun.misc.SharedSecrets
    -keep class sun.misc.SharedSecrets {
      *** getJavaLangAccess(...);
    }
    -dontnote sun.misc.JavaLangAccess
    -keep class sun.misc.JavaLangAccess {
      *** getStackTraceElement(...);
      *** getStackTraceDepth(...);
    }
    
    Registered: 2025-05-30 12:43
    - Last Modified: 2023-05-09 00:29
    - 1.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Throwables.java

      private static final String JAVA_LANG_ACCESS_CLASSNAME = "sun.misc.JavaLangAccess";
    
      /** SharedSecrets class name to load using reflection */
      @J2ktIncompatible
      @GwtIncompatible // not used by GWT emulation
      @VisibleForTesting
      static final String SHARED_SECRETS_CLASSNAME = "sun.misc.SharedSecrets";
    
      /** Access to some fancy internal JVM internals. */
      @J2ktIncompatible @GwtIncompatible // java.lang.reflect
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-28 02:48
    - 20.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Throwables.java

      private static final String JAVA_LANG_ACCESS_CLASSNAME = "sun.misc.JavaLangAccess";
    
      /** SharedSecrets class name to load using reflection */
      @J2ktIncompatible
      @GwtIncompatible // not used by GWT emulation
      @VisibleForTesting
      static final String SHARED_SECRETS_CLASSNAME = "sun.misc.SharedSecrets";
    
      /** Access to some fancy internal JVM internals. */
      @J2ktIncompatible @GwtIncompatible // java.lang.reflect
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-28 02:48
    - 20.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/lang/StringUtil.java

        static Object javaLangAccess = null;
    
        static Method newStringUnsafeMethod = null;
    
        static {
            try {
                final Class<?> sharedSecretsClass = Class.forName("sun.misc.SharedSecrets");
                javaLangAccess = sharedSecretsClass.getDeclaredMethod("getJavaLangAccess").invoke(null);
                final Class<?> javaLangAccessClass = Class.forName("sun.misc.JavaLangAccess");
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 21.7K bytes
    - Viewed (0)
  5. lib/fips140/v1.0.0.zip

    deriveSecret(s.hash, s.secret, clientEarlyTrafficLa, transcript) } type HandshakeSecret struct { secret []byte hash func() fips140.Hash } func (s *EarlySecret) HandshakeSecret(sharedSecret []byte) *HandshakeSecret { derived := deriveSecret(s.hash, s.secret, "derived", nil) return &HandshakeSecret{ secret: extract(s.hash, sharedSecret, derived), hash: s.hash, } } // ClientHandshakeTraff derives the client_handshake_traffic_secret from // the handshake secret and the transcript up to the ServerHello. func...
    Registered: 2025-05-27 11:13
    - Last Modified: 2025-01-29 15:10
    - 635K bytes
    - Viewed (0)
Back to top