Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DecryptRSAOAEP (0.35 sec)

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

    }
    func VerifyECDSA(pub *PublicKeyECDSA, hash []byte, sig []byte) bool {
    	panic("boringcrypto: not available")
    }
    
    type PublicKeyRSA struct{ _ int }
    type PrivateKeyRSA struct{ _ int }
    
    func DecryptRSAOAEP(h, mgfHash hash.Hash, priv *PrivateKeyRSA, ciphertext, label []byte) ([]byte, error) {
    	panic("boringcrypto: not available")
    }
    func DecryptRSAPKCS1(priv *PrivateKeyRSA, ciphertext []byte) ([]byte, error) {
    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

    	}
    	out := make([]byte, outLen)
    	if crypt(ctx, base(out), &outLen, base(in), C.size_t(len(in))) == 0 {
    		return nil, fail("EVP_PKEY_decrypt/encrypt")
    	}
    	return out[:outLen], nil
    }
    
    func DecryptRSAOAEP(h, mgfHash hash.Hash, priv *PrivateKeyRSA, ciphertext, label []byte) ([]byte, error) {
    	return cryptRSA(priv.withKey, C.GO_RSA_PKCS1_OAEP_PADDING, h, mgfHash, label, 0, 0, decryptInit, decrypt, ciphertext)
    }
    
    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

    		k < hash.Size()*2+2 {
    		return nil, ErrDecryption
    	}
    
    	if boring.Enabled {
    		bkey, err := boringPrivateKey(priv)
    		if err != nil {
    			return nil, err
    		}
    		out, err := boring.DecryptRSAOAEP(hash, mgfHash, bkey, ciphertext, label)
    		if err != nil {
    			return nil, ErrDecryption
    		}
    		return out, nil
    	}
    
    	em, err := decrypt(priv, ciphertext, noCheck)
    	if err != nil {
    		return nil, err
    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