Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for encodedKey (0.2 sec)

  1. src/encoding/base64/example_test.go

    	fmt.Println(str)
    	// Output:
    	// YW55ICsgb2xkICYgZGF0YQ==
    }
    
    func ExampleEncoding_Encode() {
    	data := []byte("Hello, world!")
    	dst := make([]byte, base64.StdEncoding.EncodedLen(len(data)))
    	base64.StdEncoding.Encode(dst, data)
    	fmt.Println(string(dst))
    	// Output:
    	// SGVsbG8sIHdvcmxkIQ==
    }
    
    func ExampleEncoding_DecodeString() {
    	str := "c29tZSBkYXRhIHdpdGggACBhbmQg77u/"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 19 08:44:22 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. src/encoding/base64/base64.go

    func (enc *Encoding) AppendEncode(dst, src []byte) []byte {
    	n := enc.EncodedLen(len(src))
    	dst = slices.Grow(dst, n)
    	enc.Encode(dst[len(dst):][:n], src)
    	return dst[:len(dst)+n]
    }
    
    // EncodeToString returns the base64 encoding of src.
    func (enc *Encoding) EncodeToString(src []byte) string {
    	buf := make([]byte, enc.EncodedLen(len(src)))
    	enc.Encode(buf, src)
    	return string(buf)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  3. fastapi/encoders.py

                        or (not key.startswith("_sa"))
                    )
                    and (value is not None or not exclude_none)
                    and key in allowed_keys
                ):
                    encoded_key = jsonable_encoder(
                        key,
                        by_alias=by_alias,
                        exclude_unset=exclude_unset,
                        exclude_none=exclude_none,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. src/encoding/base32/base32_test.go

    		tests = append(tests, test{rawStdEncoding, math.MaxInt/8*5 + 4, math.MaxInt})
    	}
    	for _, tt := range tests {
    		if got := tt.enc.EncodedLen(tt.n); int64(got) != tt.want {
    			t.Errorf("EncodedLen(%d): got %d, want %d", tt.n, got, tt.want)
    		}
    	}
    }
    
    func TestDecodedLen(t *testing.T) {
    	var rawStdEncoding = StdEncoding.WithPadding(NoPadding)
    	type test struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/testing/v1beta1/kms_plugin_mock.go

    	s.lastEncryptRequest = request
    
    	if s.inFailedState {
    		return nil, status.Error(codes.FailedPrecondition, "failed precondition - key disabled")
    	}
    
    	buf := make([]byte, base64.StdEncoding.EncodedLen(len(request.Plain)))
    	base64.StdEncoding.Encode(buf, request.Plain)
    
    	return &kmsapi.EncryptResponse{Cipher: buf}, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 29 05:36:41 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/net/smtp/smtp.go

    		return err
    	}
    	encoding := base64.StdEncoding
    	mech, resp, err := a.Start(&ServerInfo{c.serverName, c.tls, c.auth})
    	if err != nil {
    		c.Quit()
    		return err
    	}
    	resp64 := make([]byte, encoding.EncodedLen(len(resp)))
    	encoding.Encode(resp64, resp)
    	code, msg64, err := c.cmd(0, "%s", strings.TrimSpace(fmt.Sprintf("AUTH %s %s", mech, resp64)))
    	for err == nil {
    		var msg []byte
    		switch code {
    		case 334:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/testing/v2/kms_plugin_mock.go

    	}
    	if len(request.Uid) == 0 {
    		return nil, status.Error(codes.InvalidArgument, "uid is required")
    	}
    
    	buf := make([]byte, base64.StdEncoding.EncodedLen(len(request.Plaintext)))
    	base64.StdEncoding.Encode(buf, request.Plaintext)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt

              "mIE65swMM5/RNhS4aFjez/MwxFNOHaxc9VgCwYPXCLOtdf7AVovdyG0XWgbUXH+NyxKwboE"
          ).decodeBase64()!!
    
        val x509PublicKey =
          encodeKey(
            algorithm = RSA_ENCRYPTION,
            publicKeyBytes = publicKeyBytes,
          )
        val keyFactory = KeyFactory.getInstance("RSA")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  9. src/encoding/base64/base64_test.go

    		tests = append(tests, test{RawStdEncoding, math.MaxInt/4*3 + 2, math.MaxInt})
    	}
    	for _, tt := range tests {
    		if got := tt.enc.EncodedLen(tt.n); int64(got) != tt.want {
    			t.Errorf("EncodedLen(%d): got %d, want %d", tt.n, got, tt.want)
    		}
    	}
    }
    
    func TestDecodedLen(t *testing.T) {
    	type test struct {
    		enc  *Encoding
    		n    int
    		want int64
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. src/encoding/hex/hex_test.go

    	{"67", []byte{'g'}},
    	{"e3a1", []byte{0xe3, 0xa1}},
    }
    
    func TestEncode(t *testing.T) {
    	for i, test := range encDecTests {
    		dst := make([]byte, EncodedLen(len(test.dec)))
    		n := Encode(dst, test.dec)
    		if n != len(dst) {
    			t.Errorf("#%d: bad return value: got: %d want: %d", i, n, len(dst))
    		}
    		if string(dst) != test.enc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top