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) {
 |
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. |