/prebuilts/go/linux-x86/src/crypto/ecdh/ |
D | ecdh.go | 52 ecdh(local *PrivateKey, remote *PublicKey) ([]byte, error) 68 type PublicKey struct { struct 69 curve Curve 70 publicKey []byte 71 boring *boring.PublicKeyECDH 75 func (k *PublicKey) Bytes() []byte { 89 func (k *PublicKey) Equal(x crypto.PublicKey) bool { 98 func (k *PublicKey) Curve() Curve { 161 func (k *PrivateKey) PublicKey() *PublicKey { func
|
D | nist.go | 191 func (c *nistCurve[Point]) ecdh(local *PrivateKey, remote *PublicKey) ([]byte, error) {
|
/prebuilts/go/linux-x86/src/crypto/dsa/ |
D | dsa.go | 31 type PublicKey struct { struct 32 Parameters 33 Y *big.Int 38 PublicKey anonMember 273 func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool {
|
/prebuilts/go/linux-x86/src/crypto/ecdsa/ |
D | ecdsa.go | 50 type PublicKey struct { struct 51 elliptic.Curve 52 X, Y *big.Int 61 func (k *PublicKey) ECDH() (*ecdh.PublicKey, error) { 77 func (pub *PublicKey) Equal(x crypto.PublicKey) bool { 92 PublicKey anonMember 473 func VerifyASN1(pub *PublicKey, hash, sig []byte) bool {
|
D | boring.go | 42 func boringPublicKey(pub *PublicKey) (*boring.PublicKeyECDSA, error) { 81 func publicKeyEqual(k1, k2 *PublicKey) bool { 93 func copyPublicKey(k *PublicKey) PublicKey {
|
D | ecdsa_legacy.go | 121 func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool { 132 func verifyLegacy(pub *PublicKey, hash []byte, sig []byte) bool {
|
D | notboring.go | 11 func boringPublicKey(*PublicKey) (*boring.PublicKeyECDSA, error) {
|
D | ecdsa_noasm.go | 11 func verifyAsm(pub *PublicKey, hash []byte, sig []byte) error {
|
D | ecdsa_s390x.go | 131 func verifyAsm(pub *PublicKey, hash []byte, sig []byte) error {
|
/prebuilts/go/linux-x86/src/crypto/rsa/ |
D | rsa.go | 49 type PublicKey struct { struct 50 N *big.Int // modulus 51 E int // public exponent 59 func (pub *PublicKey) Size() int { 64 func (pub *PublicKey) Equal(x crypto.PublicKey) bool { 98 func checkPub(pub *PublicKey) error { 113 PublicKey // public part. anonMember 481 func encrypt(pub *PublicKey, plaintext []byte) ([]byte, error) { 515 func EncryptOAEP(hash hash.Hash, random io.Reader, pub *PublicKey, msg []byte, label []byte) ([]byt…
|
D | boring.go | 42 func boringPublicKey(pub *PublicKey) (*boring.PublicKeyRSA, error) { 93 func publicKeyEqual(k1, k2 *PublicKey) bool { 99 func copyPublicKey(k *PublicKey) PublicKey {
|
D | pkcs1v15.go | 42 func EncryptPKCS1v15(random io.Reader, pub *PublicKey, msg []byte) ([]byte, error) { 307 func pkcs1v15ConstructEM(pub *PublicKey, hash crypto.Hash, hashed []byte) ([]byte, error) { 345 func VerifyPKCS1v15(pub *PublicKey, hash crypto.Hash, hashed []byte, sig []byte) error {
|
D | notboring.go | 11 func boringPublicKey(*PublicKey) (*boring.PublicKeyRSA, error) {
|
D | pss.go | 344 func VerifyPSS(pub *PublicKey, hash crypto.Hash, digest []byte, sig []byte, opts *PSSOptions) error…
|
/prebuilts/go/linux-x86/src/crypto/ed25519/ |
D | ed25519.go | 42 type PublicKey []byte type 48 func (pub PublicKey) Equal(x crypto.PublicKey) bool { 267 func Verify(publicKey PublicKey, message, sig []byte) bool { 282 func VerifyWithOptions(publicKey PublicKey, message, sig []byte, opts *Options) error { 313 func verify(publicKey PublicKey, message, sig []byte, domPrefix, context string) bool {
|
/prebuilts/go/linux-x86/src/crypto/tls/ |
D | auth.go | 22 func verifyHandshakeSignature(sigType uint8, pubkey crypto.PublicKey, hashFunc crypto.Hash, signed,… 131 func legacyTypeAndHashFromPublicKey(pub crypto.PublicKey) (sigType uint8, hash crypto.Hash, err err…
|
D | ech.go | 33 PublicKey []byte member
|
/prebuilts/go/linux-x86/src/crypto/x509/ |
D | sec1.go | 31 PublicKey asn1.BitString `asn1:"optional,explicit,tag:1"` member
|
D | pkcs1.go | 167 func MarshalPKCS1PublicKey(key *rsa.PublicKey) []byte {
|
D | x509.go | 187 PublicKey publicKeyInfo member 204 PublicKey asn1.BitString member 697 PublicKey any member 894 func checkSignature(algo SignatureAlgorithm, signed, signature []byte, publicKey crypto.PublicKey, … 1814 PublicKey any member 1853 PublicKey publicKeyInfo member
|
/prebuilts/go/linux-x86/src/crypto/internal/boring/ |
D | ecdh.go | 97 func (k *PrivateKeyECDH) PublicKey() (*PublicKeyECDH, error) { func
|
/prebuilts/go/linux-x86/src/crypto/ |
D | crypto.go | 162 type PublicKey any type
|
/prebuilts/go/linux-x86/src/crypto/internal/hpke/ |
D | hpke.go | 150 func SetupSender(kemID, kdfID, aeadID uint16, pub crypto.PublicKey, info []byte) ([]byte, *Sender, …
|
/prebuilts/go/linux-x86/src/encoding/asn1/ |
D | asn1_test.go | 561 PublicKey PublicKeyInfo member 583 PublicKey BitString member
|
/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/mod/sumdb/note/ |
D | note.go | 378 func NewEd25519VerifierKey(name string, key ed25519.PublicKey) (string, error) {
|