Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GenerateKeyRSA (0.11 sec)

  1. src/crypto/internal/boring/notboring.go

    	panic("boringcrypto: not available")
    }
    func EncryptRSANoPadding(pub *PublicKeyRSA, msg []byte) ([]byte, error) {
    	panic("boringcrypto: not available")
    }
    func GenerateKeyRSA(bits int) (N, E, D, P, Q, Dp, Dq, Qinv BigInt, err error) {
    	panic("boringcrypto: not available")
    }
    func NewPrivateKeyRSA(N, E, D, P, Q, Dp, Dq, Qinv BigInt) (*PrivateKeyRSA, error) {
    	panic("boringcrypto: not available")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/rsa.go

    package boring
    
    // #include "goboringcrypto.h"
    import "C"
    import (
    	"crypto"
    	"crypto/subtle"
    	"errors"
    	"hash"
    	"runtime"
    	"strconv"
    	"unsafe"
    )
    
    func GenerateKeyRSA(bits int) (N, E, D, P, Q, Dp, Dq, Qinv BigInt, err error) {
    	bad := func(e error) (N, E, D, P, Q, Dp, Dq, Qinv BigInt, err error) {
    		return nil, nil, nil, nil, nil, nil, nil, nil, e
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 23:38:03 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. src/crypto/rsa/rsa.go

    	randutil.MaybeReadByte(random)
    
    	if boring.Enabled && random == boring.RandReader && nprimes == 2 &&
    		(bits == 2048 || bits == 3072 || bits == 4096) {
    		bN, bE, bD, bP, bQ, bDp, bDq, bQinv, err := boring.GenerateKeyRSA(bits)
    		if err != nil {
    			return nil, err
    		}
    		N := bbig.Dec(bN)
    		E := bbig.Dec(bE)
    		D := bbig.Dec(bD)
    		P := bbig.Dec(bP)
    		Q := bbig.Dec(bQ)
    		Dp := bbig.Dec(bDp)
    		Dq := bbig.Dec(bDq)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top