Home
last modified time | relevance | path

Searched defs:PublicKey (Results 1 – 25 of 35) sorted by relevance

12

/external/rust/crates/ring/src/ec/
Dkeys.rs15 pub fn public_key(&self) -> &PublicKey { in public_key()
18 pub fn split(self) -> (Seed, PublicKey) { in split() argument
68 pub fn compute_public_key(&self) -> Result<PublicKey, error::Unspecified> { in compute_public_key()
79 pub struct PublicKey { struct
84 impl AsRef<[u8]> for PublicKey { implementation
/external/rust/beto-rust/nearby/crypto/crypto_provider/src/
Delliptic_curve.rs27 type PublicKey: PublicKey<C>; typedef
56 other_pub: &<Self::Impl as EcdhProvider<C>>::PublicKey, in diffie_hellman()
66 _public_key: &<Self::Impl as EcdhProvider<C>>::PublicKey,
73 pub trait PublicKey<E: Curve>: Sized + PartialEq + Debug { trait
Ded25519.rs23 type PublicKey: PublicKey<Signature = Self::Signature>; typedef
40 type PublicKey: PublicKey; typedef
68 fn public(&self) -> Self::PublicKey; in public()
83 pub trait PublicKey { interface
Dp256.rs67 type PublicKey: P256PublicKey; typedef
75 type PublicKey = E::PublicKey; typedef
105 type PublicKey: P256PublicKey; typedef
119 type PublicKey = E::PublicKey; typedef
Dx25519.rs47 type PublicKey: PublicKey<X25519>; typedef
61 type PublicKey = E::PublicKey; typedef
/external/rust/crates/ring/src/
Dagreement.rs124 pub fn compute_public_key(&self) -> Result<PublicKey, error::Unspecified> { in compute_public_key()
152 pub struct PublicKey { struct
154 bytes: ec::PublicKey, argument
157 impl AsRef<[u8]> for PublicKey { implementation
163 impl core::fmt::Debug for PublicKey { implementation
172 impl PublicKey { impl
Dsignature.rs338 type PublicKey: AsRef<[u8]> + core::fmt::Debug + Clone + Send + Sized + Sync; typedef
341 fn public_key(&self) -> &Self::PublicKey; in public_key()
/external/rust/beto-rust/nearby/crypto/crypto_provider_rustcrypto/src/
Ded25519.rs26 type PublicKey = PublicKey; typedef
33 type PublicKey = PublicKey; typedef
60 fn public(&self) -> Self::PublicKey { in public()
82 pub struct PublicKey(ed25519_dalek::VerifyingKey); struct
84 impl crypto_provider::ed25519::PublicKey for PublicKey { implementation
Dx25519.rs31 type PublicKey = X25519PublicKey; typedef
63 other_pub: &<X25519Ecdh<R> as EcdhProvider<X25519>>::PublicKey, in diffie_hellman()
/external/rust/beto-rust/nearby/crypto/crypto_provider_openssl/src/
Ded25519.rs26 type PublicKey = PublicKey; typedef
33 type PublicKey = PublicKey; typedef
67 fn public(&self) -> Self::PublicKey { in public()
88 pub struct PublicKey(Vec<u8>); struct
90 impl crypto_provider::ed25519::PublicKey for PublicKey { implementation
Dx25519.rs78 _public_key: &<Self::Impl as EcdhProvider<X25519>>::PublicKey,
88 type PublicKey = X25519PublicKey; typedef
Dp256.rs137 other_pub: &<Self::Impl as EcdhProvider<P256>>::PublicKey, in diffie_hellman()
168 type PublicKey = P256PublicKey; typedef
/external/python/rsa/rsa/
Dpkcs1.py164 def encrypt(message: bytes, pub_key: key.PublicKey) -> bytes:
334 def verify(message: bytes, signature: bytes, pub_key: key.PublicKey) -> str:
372 def find_signature_hash(signature: bytes, pub_key: key.PublicKey) -> str:
/external/rust/crates/ring/src/ec/curve25519/ed25519/
Dsigning.rs222 type PublicKey = PublicKey; typedef
224 fn public_key(&self) -> &Self::PublicKey { in public_key()
230 pub struct PublicKey([u8; ED25519_PUBLIC_KEY_LEN]); struct
232 impl AsRef<[u8]> for PublicKey { implementation
/external/rust/beto-rust/nearby/crypto/crypto_provider_stubs/src/
Dlib.rs175 type PublicKey = EcdhPubKey; typedef
196 _other_pub: &<Self::Impl as EcdhProvider<X25519>>::PublicKey, in diffie_hellman()
217 _other_pub: &<Self::Impl as EcdhProvider<P256>>::PublicKey, in diffie_hellman()
261 type PublicKey = PublicKeyStubs; typedef
357 type PublicKey = PublicKeyStubs; typedef
397 type PublicKey = PublicKeyStubs; typedef
419 fn public(&self) -> Self::PublicKey { in public()
/external/python/pyasn1-modules/pyasn1_modules/
Drfc5958.py56 class PublicKey(univ.BitString): class
/external/rust/crates/ring/src/rsa/keypair/
Dsigning.rs194 type PublicKey = RsaSubjectPublicKey; typedef
197 fn public_key(&self) -> &Self::PublicKey { in public_key()
/external/rust/crates/ring/src/ec/suite_b/ecdsa/
Dsigning.rs366 type PublicKey = PublicKey; typedef
368 fn public_key(&self) -> &Self::PublicKey { in public_key()
374 pub struct PublicKey(ec::PublicKey); struct
378 impl AsRef<[u8]> for PublicKey { implementation
/external/boringssl/src/ssl/test/runner/
Dsign.go26 verifyMessage(key crypto.PublicKey, msg, sig []byte) error
70 func verifyMessage(version uint16, key crypto.PublicKey, config *Config, sigAlg signatureAlgorithm,…
Dkey_agreement.go137 func rsaSize(pub *rsa.PublicKey) int {
141 func rsaRawEncrypt(pub *rsa.PublicKey, msg []byte) ([]byte, error) {
365 …Config, clientHello *clientHelloMsg, serverHello *serverHelloMsg, key crypto.PublicKey, params []b…
/external/cronet/third_party/boringssl/src/ssl/test/runner/
Dsign.go26 verifyMessage(key crypto.PublicKey, msg, sig []byte) error
70 func verifyMessage(version uint16, key crypto.PublicKey, config *Config, sigAlg signatureAlgorithm,…
Dkey_agreement.go137 func rsaSize(pub *rsa.PublicKey) int {
141 func rsaRawEncrypt(pub *rsa.PublicKey, msg []byte) ([]byte, error) {
365 …Config, clientHello *clientHelloMsg, serverHello *serverHelloMsg, key crypto.PublicKey, params []b…
/external/rust/crates/pkcs8/src/
Derror.rs34 PublicKey(spki::Error), enumerator
/external/openthread/src/core/crypto/
Decdsa.hpp231 class PublicKey : public Equatable<PublicKey> class in ot::Crypto::Ecdsa::P256
/external/rust/crates/ring/src/ec/curve25519/
Dx25519.rs166 type PublicKey = [u8; PUBLIC_KEY_LEN]; typedef

12