/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ |
SignerWithRecovery.java | 4 * Signer with message recovery. 7 extends Signer 10 * Returns true if the signer has recovered the full message as 26 * be the first update method called, and calling it will result in the signer assuming
|
Signer.java | 4 * Generic signer interface for hash based and message recovery signers. 6 public interface Signer 9 * Initialise the signer for signing or verification.
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
SignerStub.java | 26 import java.security.Signer; 29 * Stub for abstract class Signer, necessary for testing purposes 32 public class SignerStub extends Signer {
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
SignerStub.java | 27 import java.security.Signer; 30 * Stub for abstract class Signer, necessary for testing purposes 34 public class SignerStub extends Signer {
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
SignerTest.java | 32 import java.security.Signer; 43 * tests for class Signer 57 * java.security.Signer#toString() 60 Signer s1 = new SignerStub("testToString1"); 61 assertEquals("[Signer]testToString1", s1.toString()); 63 Signer s2 = new SignerStub("testToString2", new SystemScope()); 76 * verify Signer() creates instance 79 Signer s = new SignerStub(); 86 * verify Signer(String) creates instance 89 Signer s = new SignerStub("sss3") [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
SignerTest.java | 33 * tests for class Signer 48 * @tests java.security.Signer#toString() 51 Signer s1 = new SignerStub("testToString1"); 52 assertEquals("[Signer]testToString1", s1.toString()); 54 Signer s2 = new SignerStub("testToString2", IdentityScope.getSystemScope()); 66 * verify Signer() creates instance 69 Signer s = new SignerStub(); 76 * verify Signer(String) creates instance 79 Signer s = new SignerStub("sss3"); 86 * verify Signer(String, IdentityScope) creates instanc [all...] |
/libcore/ojluni/src/main/java/java/security/ |
Signer.java | 34 * <p>The management of a signer's private keys is an important and 48 public abstract class Signer extends Identity { 53 * The signer's private key. 60 * Creates a signer. This constructor should only be used for 63 protected Signer() { 69 * Creates a signer with the specified identity name. 73 public Signer(String name) { 78 * Creates a signer with the specified identity name and scope. 87 public Signer(String name, IdentityScope scope) 93 * Returns this signer's private key [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudfront/ |
signers.py | 22 class Signer(object): 41 if name == 'Signer': 42 s = Signer()
|
/prebuilts/go/darwin-x86/src/crypto/ |
crypto.go | 105 // Signer is an interface for an opaque private key that can be used for 107 type Signer interface { 124 // SignerOpts contains options for signing with a Signer. 127 // the message passed to Signer.Sign, or else zero to indicate that no
|
/prebuilts/go/linux-x86/src/crypto/ |
crypto.go | 105 // Signer is an interface for an opaque private key that can be used for 107 type Signer interface { 124 // SignerOpts contains options for signing with a Signer. 127 // the message passed to Signer.Sign, or else zero to indicate that no
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/ |
test_jwt.py | 55 self.signer = crypt.OpenSSLSigner 70 signer = self.signer.from_string(private_key) 71 signature = signer.sign('foo') 92 signer = self.signer.from_string(private_key) 96 return crypt.make_signed_jwt(signer, { 150 signer = self.signer.from_string(private_key) 153 jwt = crypt.make_signed_jwt(signer, { [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/ |
RSADigestSigner.java | 20 import org.bouncycastle.crypto.Signer; 28 implements Signer 86 * initialise the signer for signing or verification.
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/ |
crypt.py | 150 """Construct a Signer instance from a string. 157 Signer instance. 286 """Construct a Signer instance from a string. 293 Signer instance. 315 Signer = OpenSSLSigner 318 Signer = PyCryptoSigner 360 def make_signed_jwt(signer, payload): 366 signer: crypt.Signer, Cryptographic signer [all...] |
/build/tools/signapk/src/com/android/signapk/ |
ApkSignerV2.java | 47 * APK Signature Scheme v2 signer. 105 * Signer configuration. 133 * @param signerConfigs signer configurations, one for each signer. 218 // Sign the digests and wrap the signatures and signer info into an APK Signing Block. 392 // * length-prefixed sequence of length-prefixed signer blocks. 402 throw new InvalidKeyException("Signer #" + signerNumber + " failed", e); 404 throw new SignatureException("Signer #" + signerNumber + " failed", e); 419 throw new SignatureException("No certificates configured for signer"); 449 V2SignatureSchemeBlock.Signer signer = new V2SignatureSchemeBlock.Signer() local [all...] |
/prebuilts/go/darwin-x86/src/crypto/tls/ |
key_agreement.go | 236 priv, ok := cert.PrivateKey.(crypto.Signer) 238 return nil, errors.New("tls: certificate private key does not implement crypto.Signer")
|
common.go | 567 // in Leaf. For a server, this must implement crypto.Signer and/or 569 // (performing client authentication), this must be a crypto.Signer
|
handshake_client.go | 439 key, ok := chainToSend.PrivateKey.(crypto.Signer) 442 return fmt.Errorf("tls: client certificate private key of type %T does not implement crypto.Signer", chainToSend.PrivateKey)
|
handshake_server.go | 203 if priv, ok := hs.cert.PrivateKey.(crypto.Signer); ok {
|
/prebuilts/go/darwin-x86/src/crypto/x509/ |
x509.go | [all...] |
/prebuilts/go/linux-x86/src/crypto/tls/ |
key_agreement.go | 236 priv, ok := cert.PrivateKey.(crypto.Signer) 238 return nil, errors.New("tls: certificate private key does not implement crypto.Signer")
|
common.go | 567 // in Leaf. For a server, this must implement crypto.Signer and/or 569 // (performing client authentication), this must be a crypto.Signer
|
handshake_client.go | 439 key, ok := chainToSend.PrivateKey.(crypto.Signer) 442 return fmt.Errorf("tls: client certificate private key of type %T does not implement crypto.Signer", chainToSend.PrivateKey)
|
/prebuilts/go/linux-x86/src/crypto/x509/ |
x509.go | [all...] |
/prebuilts/go/darwin-x86/src/crypto/rsa/ |
pss.go | 228 // crypto.Signer interface.
|
/prebuilts/go/linux-x86/src/crypto/rsa/ |
pss.go | 228 // crypto.Signer interface.
|