Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for x_1 (0.11 sec)

  1. src/crypto/internal/edwards25519/scalarmult.go

    	// as described in the Ed25519 paper
    	//
    	// Group even and odd coefficients
    	// x*B     = x_0*16^0*B + x_2*16^2*B + ... + x_62*16^62*B
    	//         + x_1*16^1*B + x_3*16^3*B + ... + x_63*16^63*B
    	// x*B     = x_0*16^0*B + x_2*16^2*B + ... + x_62*16^62*B
    	//    + 16*( x_1*16^0*B + x_3*16^2*B + ... + x_63*16^62*B)
    	//
    	// We use a lookup table for each i to get x_i*16^(2*i)*B
    	// and do four doublings to multiply by 16.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:10 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  2. internal/s3select/sql/parser_test.go

    	p := participle.MustBuild(
    		&ObjectKey{},
    		participle.Lexer(sqlLexer),
    		participle.CaseInsensitive("Keyword"),
    	)
    
    	validCases := []string{
    		"['abc']",
    		"['ab''c']",
    		"['a''b''c']",
    		"['abc-x_1##@(*&(#*))/\\']",
    	}
    	for i, tc := range validCases {
    		err := p.ParseString(tc, &k)
    		if err != nil {
    			t.Fatalf("%d: %v", i, err)
    		}
    		if string(*k.Lit) == "" {
    			t.Fatalf("Incorrect parse %#v", k)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top