Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 88 for strhash (0.48 sec)

  1. src/crypto/tls/auth.go

    // certificate keys in TLS 1.3. See RFC 8446, Section 4.4.3.
    func signedMessage(sigHash crypto.Hash, context string, transcript hash.Hash) []byte {
    	if sigHash == directSigning {
    		b := &bytes.Buffer{}
    		b.Write(signaturePadding)
    		io.WriteString(b, context)
    		b.Write(transcript.Sum(nil))
    		return b.Bytes()
    	}
    	h := sigHash.New()
    	h.Write(signaturePadding)
    	io.WriteString(h, context)
    	h.Write(transcript.Sum(nil))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/common/admin/crud/buttons.jsp

    	</button>
    	<button type="button" class="btn btn-danger" name="delete"
    		data-toggle="modal" data-target="#confirmToDelete"
    		value="<la:message key="labels.crud_button_delete" />">
    		<em class="fa fa-trash">
    		<la:message key="labels.crud_button_delete" />
    	</button>
    	<div class="modal fade" id="confirmToDelete" tabindex="-1"
    		role="dialog">
    		<div class="modal-dialog">
    			<div class="modal-content bg-danger">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 10 12:37:20 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                            break;
                        case "email":
                            attributes.put("email", jsonParser.getText());
                            break;
                        case "at_hash":
                            attributes.put("at_hash", jsonParser.getText());
                            break;
                        case "email_verified":
                            attributes.put("email_verified", jsonParser.getText());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. src/cmd/go/proxy_test.go

    		name := path + "@" + vers + "/" + f.Name
    		names = append(names, name)
    		files[name] = f.Data
    	}
    	h1, err := dirhash.Hash1(names, func(name string) (io.ReadCloser, error) {
    		data := files[name]
    		return io.NopCloser(bytes.NewReader(data)), nil
    	})
    	if err != nil {
    		return nil, err
    	}
    	h1mod, err := dirhash.Hash1([]string{"go.mod"}, func(string) (io.ReadCloser, error) {
    		return io.NopCloser(bytes.NewReader(gomod)), nil
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 03 09:56:24 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                                                        data-url="${f:h(doc.url_link)}">
                                                                    <em class="fa fa-trash">
                                                                    <la:message key="labels.search_list_button_delete"/>
                                                                </button>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Sep 24 13:09:22 UTC 2020
    - 20K bytes
    - Viewed (0)
  6. pkg/util/strcase/camelcase.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package strcase
    
    import (
    	"bytes"
    	"strings"
    )
    
    // CamelCase converts the string into camel case string
    func CamelCase(s string) string {
    	if s == "" {
    		return ""
    	}
    	t := make([]byte, 0, 32)
    	i := 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 28 19:48:10 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server.go

    				return c.sendAlert(alertInternalError)
    			}
    		} else {
    			sigType, sigHash, err = legacyTypeAndHashFromPublicKey(pub)
    			if err != nil {
    				c.sendAlert(alertIllegalParameter)
    				return err
    			}
    		}
    
    		signed := hs.finishedHash.hashForClientCertificate(sigType, sigHash)
    		if err := verifyHandshakeSignature(sigType, pub, sigHash, signed, certVerify.signature); err != nil {
    			c.sendAlert(alertDecryptError)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. src/debug/dwarf/entry.go

    			// program uses Reader.Seek to skip over the
    			// unit. Not much we can do about that.
    			var strBase int64
    			if cu != nil {
    				strBase, _ = cu.Val(AttrStrOffsetsBase).(int64)
    			} else if a.tag == TagCompileUnit {
    				delay = append(delay, delayed{i, off, formStrx})
    				break
    			}
    
    			val = resolveStrx(uint64(strBase), off)
    
    		case formStrpSup:
    			is64, known := b.format.dwarf64()
    			if !known {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  9. pkg/util/strcase/camelcase_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package strcase
    
    import (
    	"testing"
    
    	. "github.com/onsi/gomega"
    )
    
    func TestCamelCase(t *testing.T) {
    	cases := map[string]string{
    		"":              "",
    		"foo":           "Foo",
    		"foobar":        "Foobar",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client.go

    			certVerify.signatureAlgorithm = signatureAlgorithm
    		} else {
    			sigType, sigHash, err = legacyTypeAndHashFromPublicKey(key.Public())
    			if err != nil {
    				c.sendAlert(alertIllegalParameter)
    				return err
    			}
    		}
    
    		signed := hs.finishedHash.hashForClientCertificate(sigType, sigHash)
    		signOpts := crypto.SignerOpts(sigHash)
    		if sigType == signatureRSAPSS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
Back to top