func crypto/ecdsa.Verify
6 uses
crypto/ecdsa (current package)
ecdsa.go#L291: func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool {
ecdsa.go#L352: return Verify(pub, hash, r, s)
golang.org/x/crypto/openpgp/packet
public_key.go#L541: if !ecdsa.Verify(ecdsaPublicKey, hashBytes, new(big.Int).SetBytes(sig.ECDSASigR.bytes), new(big.Int).SetBytes(sig.ECDSASigS.bytes)) {
golang.org/x/crypto/ssh
keys.go#L691: if ecdsa.Verify((*ecdsa.PublicKey)(k), digest, ecSig.R, ecSig.S) {
keys.go#L817: if ecdsa.Verify((*ecdsa.PublicKey)(&k.PublicKey), digest, ecSig.R, ecSig.S) {
google.golang.org/api/idtoken
validate.go#L207: if valid := ecdsa.Verify(pk, hashedContent, r, s); !valid {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |