Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 947 for decrypto (0.2 sec)

  1. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/SimpleKeyRing.groovy

            generator
        }
    
        private static PGPPrivateKey getPrivateKey(PGPSecretKey secretKey, String password) {
            def decryptor = new BcPBESecretKeyDecryptorBuilder(new BcPGPDigestCalculatorProvider())
                .build(password.toCharArray())
            return secretKey.extractPrivateKey(decryptor)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/testing/v2/kms_plugin_mock.go

    	}
    
    	return &kmsapi.StatusResponse{Version: s.ver, Healthz: "ok", KeyId: s.keyID}, nil
    }
    
    // Decrypt performs base64 decoding of the payload of kms.DecryptRequest.
    func (s *Base64Plugin) Decrypt(ctx context.Context, request *kmsapi.DecryptRequest) (*kmsapi.DecryptResponse, error) {
    	klog.V(3).InfoS("Received Decrypt Request", "ciphertext", string(request.Ciphertext))
    
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	if s.inFailedState {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/metrics_test.go

    				# TYPE apiserver_storage_transformation_operations_total counter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/grpc_service.go

    	go func() {
    		defer utilruntime.HandleCrash()
    
    		<-ctx.Done()
    		_ = s.connection.Close()
    	}()
    
    	return s, nil
    }
    
    // Decrypt a given data string to obtain the original byte data.
    func (g *gRPCService) Decrypt(ctx context.Context, uid string, req *kmsservice.DecryptRequest) ([]byte, error) {
    	ctx, cancel := context.WithTimeout(ctx, g.callTimeout)
    	defer cancel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 23:18:16 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. src/go/build/deps_test.go

    	< crypto/subtle
    	< crypto/internal/alias
    	< crypto/cipher;
    
    	crypto/cipher,
    	crypto/internal/boring/bcache
    	< crypto/internal/boring
    	< crypto/boring;
    
    	crypto/internal/alias
    	< crypto/internal/randutil
    	< crypto/internal/nistec/fiat
    	< crypto/internal/nistec
    	< crypto/internal/edwards25519/field
    	< crypto/internal/edwards25519;
    
    	crypto/boring
    	< crypto/aes, crypto/des, crypto/hmac, crypto/md5, crypto/rc4,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. src/vendor/modules.txt

    # golang.org/x/crypto v0.23.1-0.20240603234054-0b431c7de36a
    ## explicit; go 1.18
    golang.org/x/crypto/chacha20
    golang.org/x/crypto/chacha20poly1305
    golang.org/x/crypto/cryptobyte
    golang.org/x/crypto/cryptobyte/asn1
    golang.org/x/crypto/hkdf
    golang.org/x/crypto/internal/alias
    golang.org/x/crypto/internal/poly1305
    golang.org/x/crypto/sha3
    # golang.org/x/net v0.25.1-0.20240603202750-6249541f2a6c
    ## explicit; go 1.18
    golang.org/x/net/dns/dnsmessage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 872 bytes
    - Viewed (0)
  7. src/crypto/aes/block.go

    	s3 ^= xk[k+3]
    
    	_ = dst[15] // early bounds check
    	byteorder.BePutUint32(dst[0:4], s0)
    	byteorder.BePutUint32(dst[4:8], s1)
    	byteorder.BePutUint32(dst[8:12], s2)
    	byteorder.BePutUint32(dst[12:16], s3)
    }
    
    // Decrypt one block from src into dst, using the expanded key xk.
    func decryptBlockGo(xk []uint32, dst, src []byte) {
    	_ = src[15] // early bounds check
    	s0 := byteorder.BeUint32(src[0:4])
    	s1 := byteorder.BeUint32(src[4:8])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/crypto/sha512/sha512.go

    // marshal and unmarshal the internal state of the hash.
    package sha512
    
    import (
    	"crypto"
    	"crypto/internal/boring"
    	"errors"
    	"hash"
    	"internal/byteorder"
    )
    
    func init() {
    	crypto.RegisterHash(crypto.SHA384, New384)
    	crypto.RegisterHash(crypto.SHA512, New)
    	crypto.RegisterHash(crypto.SHA512_224, New512_224)
    	crypto.RegisterHash(crypto.SHA512_256, New512_256)
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. test/stress/parsego.go

    	"container/list",
    	"container/ring",
    	"crypto",
    	"crypto/aes",
    	"crypto/cipher",
    	"crypto/des",
    	"crypto/dsa",
    	"crypto/ecdsa",
    	"crypto/elliptic",
    	"crypto/hmac",
    	"crypto/md5",
    	"crypto/rand",
    	"crypto/rc4",
    	"crypto/rsa",
    	"crypto/sha1",
    	"crypto/sha256",
    	"crypto/sha512",
    	"crypto/subtle",
    	"crypto/tls",
    	"crypto/x509",
    	"crypto/x509/pkix",
    	"database",
    	"database/sql",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 4.1K bytes
    - Viewed (0)
  10. src/crypto/tls/auth_test.go

    		{pkcs1Cert, []SignatureScheme{PSSWithSHA256, PKCS1WithSHA256}, VersionTLS12, PKCS1WithSHA256, signaturePKCS1v15, crypto.SHA256},
    		{rsaCert, []SignatureScheme{PSSWithSHA384, PKCS1WithSHA1}, VersionTLS13, PSSWithSHA384, signatureRSAPSS, crypto.SHA384},
    		{ecdsaCert, []SignatureScheme{ECDSAWithSHA1}, VersionTLS12, ECDSAWithSHA1, signatureECDSA, crypto.SHA1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 08 21:48:41 UTC 2020
    - 6.9K bytes
    - Viewed (0)
Back to top