func crypto/dsa.Verify

4 uses

	crypto/dsa (current package)
		dsa.go#L273: func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool {

	golang.org/x/crypto/openpgp/packet
		public_key.go#L535: 		if !dsa.Verify(dsaPublicKey, hashBytes, new(big.Int).SetBytes(sig.DSASigR.bytes), new(big.Int).SetBytes(sig.DSASigS.bytes)) {
		public_key.go#L585: 		if !dsa.Verify(dsaPublicKey, hashBytes, new(big.Int).SetBytes(sig.DSASigR.bytes), new(big.Int).SetBytes(sig.DSASigS.bytes)) {

	golang.org/x/crypto/ssh
		keys.go#L483: 	if dsa.Verify((*dsa.PublicKey)(k), digest, r, s) {