Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for signTBS (0.07 sec)

  1. src/crypto/x509/x509.go

    				Algorithm:  details.oid,
    				Parameters: details.params,
    			}, nil
    		}
    	}
    
    	return 0, ai, errors.New("x509: unknown SignatureAlgorithm")
    }
    
    func signTBS(tbs []byte, key crypto.Signer, sigAlg SignatureAlgorithm, rand io.Reader) ([]byte, error) {
    	signed := tbs
    	hashFunc := sigAlg.hashFunc()
    	if hashFunc != 0 {
    		h := hashFunc.New()
    		h.Write(signed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top