type crypto/dsa.PublicKey
16 uses
crypto/dsa (current package)
dsa.go#L31: type PublicKey struct {
dsa.go#L38: PublicKey
dsa.go#L273: func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool {
crypto/x509
x509.go#L969: pub := &dsa.PublicKey{
golang.org/x/crypto/openpgp/packet
private_key.go#L331: dsaPub := pk.PublicKey.PublicKey.(*dsa.PublicKey)
public_key.go#L197: func NewDSAPublicKey(creationTime time.Time, pub *dsa.PublicKey) *PublicKey {
public_key.go#L362: dsa := new(dsa.PublicKey)
public_key.go#L529: dsaPublicKey, _ := pk.PublicKey.(*dsa.PublicKey)
public_key.go#L579: dsaPublicKey := pk.PublicKey.(*dsa.PublicKey)
golang.org/x/crypto/ssh
keys.go#L405: type dsaPublicKey dsa.PublicKey
keys.go#L483: if dsa.Verify((*dsa.PublicKey)(k), digest, r, s) {
keys.go#L490: return (*dsa.PublicKey)(k)
keys.go#L1061: case *dsa.PublicKey:
keys.go#L1204: PublicKey: dsa.PublicKey{
golang.org/x/crypto/ssh/agent
server.go#L285: PublicKey: dsa.PublicKey{
server.go#L438: PublicKey: dsa.PublicKey{
![]() |
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. |