Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for NaCl (0.12 sec)

  1. src/crypto/tls/boring_test.go

    			t.Errorf("client offered disallowed signature-and-hash %v", sigHash)
    		}
    	}
    }
    
    func TestBoringCertAlgs(t *testing.T) {
    	// NaCl, arm and wasm time out generating keys. Nothing in this test is architecture-specific, so just don't bother on those.
    	if runtime.GOOS == "nacl" || runtime.GOARCH == "arm" || runtime.GOOS == "js" {
    		t.Skipf("skipping on %s/%s because key generation takes too long", runtime.GOOS, runtime.GOARCH)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/MediaType.java

      /**
       * NaCl applications. For more information see <a
       * href="https://developer.chrome.com/native-client/devguide/coding/application-structure">the
       * Developer Guide for Native Client Application Structure</a>.
       *
       * @since 20.0
       */
      public static final MediaType NACL_APPLICATION = createConstant(APPLICATION_TYPE, "x-nacl");
    
      /**
       * NaCl portable applications. For more information see <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/imports/build.go

    	"android":   true,
    	"darwin":    true,
    	"dragonfly": true,
    	"freebsd":   true,
    	"hurd":      true,
    	"illumos":   true,
    	"ios":       true,
    	"js":        true,
    	"linux":     true,
    	"nacl":      true, // legacy; don't remove
    	"netbsd":    true,
    	"openbsd":   true,
    	"plan9":     true,
    	"solaris":   true,
    	"wasip1":    true,
    	"windows":   true,
    	"zos":       true,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_encryption.go

    )
    
    var (
    	// See https://golang.org/pkg/crypto/aes/#NewCipher for details on supported key sizes for AES.
    	aesKeySizes = []int{16, 24, 32}
    
    	// See https://godoc.org/golang.org/x/crypto/nacl/secretbox#Open for details on the supported key sizes for Secretbox.
    	secretBoxKeySizes = []int{32}
    )
    
    // ValidateEncryptionConfiguration validates a v1.EncryptionConfiguration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/MediaType.java

      /**
       * NaCl applications. For more information see <a
       * href="https://developer.chrome.com/native-client/devguide/coding/application-structure">the
       * Developer Guide for Native Client Application Structure</a>.
       *
       * @since 20.0
       */
      public static final MediaType NACL_APPLICATION = createConstant(APPLICATION_TYPE, "x-nacl");
    
      /**
       * NaCl portable applications. For more information see <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  6. test/nosplit.go

    // run
    
    //go:build !nacl && !js && !aix && !wasip1 && !gcflags_noopt && gc
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"bytes"
    	"fmt"
    	"io/ioutil"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"runtime"
    	"strconv"
    	"strings"
    )
    
    const debug = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. src/syscall/tables_js.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build js && wasm
    
    package syscall
    
    import "runtime"
    
    // These were originally used by Nacl, then later also used by
    // js/wasm. Now that they're only used by js/wasm, these numbers are
    // just arbitrary.
    //
    // TODO: delete? replace with something meaningful?
    const (
    	sys_null                 = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
Back to top