Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 412 for rsa_ (0.1 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/testdata/gen.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -e
    
    rm ./*.pem
    
    for N in $(seq 1 3); do
        ssh-keygen -t rsa -b 2048 -f rsa_"$N".pem -N ''
    done
    
    for N in $(seq 1 3); do
        ssh-keygen -t ecdsa -b 521 -f ecdsa_"$N".pem -N ''
    done
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 24 05:55:09 UTC 2019
    - 807 bytes
    - Viewed (0)
  2. src/crypto/rsa/rsa.go

    // license that can be found in the LICENSE file.
    
    // Package rsa implements RSA encryption as specified in PKCS #1 and RFC 8017.
    //
    // RSA is a single, fundamental operation that is used in this package to
    // implement either public-key encryption or public-key signatures.
    //
    // The original specification for encryption and signatures with RSA is PKCS #1
    // and the terms "RSA encryption" and "RSA signatures" by default refer to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/rsa.go

    }
    
    var invalidSaltLenErr = errors.New("crypto/rsa: PSSOptions.SaltLength cannot be negative")
    
    func SignRSAPSS(priv *PrivateKeyRSA, h crypto.Hash, hashed []byte, saltLen int) ([]byte, error) {
    	md := cryptoHashToMD(h)
    	if md == nil {
    		return nil, errors.New("crypto/rsa: unsupported hash function")
    	}
    
    	// A salt length of -2 is valid in BoringSSL, but not in crypto/rsa, so reject
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 23:38:03 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/internal/poll/fd_windows.go

    	o.InitBuf(buf)
    	n, err := execIO(o, func(o *operation) error {
    		if o.rsa == nil {
    			o.rsa = new(syscall.RawSockaddrAny)
    		}
    		o.rsan = int32(unsafe.Sizeof(*o.rsa))
    		return syscall.WSARecvFrom(o.fd.Sysfd, &o.buf, 1, &o.qty, &o.flags, o.rsa, &o.rsan, &o.o, nil)
    	})
    	err = fd.eofError(n, err)
    	if err != nil {
    		return n, nil, err
    	}
    	sa, _ := o.rsa.Sockaddr()
    	return n, sa, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. releasenotes/notes/env-workload-rsa-keysize.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 22 04:22:49 UTC 2022
    - 171 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/testdata/rsa_3.pem

    Eric Chiang <******@****.***> 1516389338 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 18:57:49 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/testdata/rsa_1.pem

    Eric Chiang <******@****.***> 1516389338 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 18:57:49 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/testdata/rsa_2.pem

    Eric Chiang <******@****.***> 1516389338 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 18:57:49 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  9. src/net/fd_windows.go

    	var lrsa, rrsa *syscall.RawSockaddrAny
    	var llen, rlen int32
    	syscall.GetAcceptExSockaddrs((*byte)(unsafe.Pointer(&rawsa[0])),
    		0, rsan, rsan, &lrsa, &llen, &rrsa, &rlen)
    	lsa, _ := lrsa.Sockaddr()
    	rsa, _ := rrsa.Sockaddr()
    
    	netfd.setAddr(netfd.addrFunc()(lsa), netfd.addrFunc()(rsa))
    	return netfd, nil
    }
    
    // Unimplemented functions.
    
    func (fd *netFD) dup() (*os.File, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv10-ClientCert-RSA-RSA

    Roland Shoemaker <******@****.***> 1715710936 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top