HomeSort by relevance Sort by last modified time
    Searched refs:Signature (Results 276 - 300 of 461) sorted by null

<<111213141516171819

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winperf.h 15 WCHAR Signature[4];
ntsecpkg.h     [all...]
poclass.h 217 ULONG Signature;
  /system/extras/verity/
KeystoreSigner.java 23 import java.security.Signature;
55 * Signature ::= AndroidVerifiedBootSignature
89 private BootSignature signature; field in class:BootKeystore
120 v.add(signature);
140 signature = new BootSignature(sig.getEncoded());
145 return Utils.verify(signature.getPublicKey(), innerKeystore,
146 signature.getSignature(), signature.getAlgorithmIdentifier());
152 signature = new BootSignature("keystore", innerKeystore.length);
153 signature.setCertificate(certificate)
    [all...]
  /art/runtime/mirror/
class.cc 337 ArtMethod* Class::FindInterfaceMethod(const StringPiece& name, const StringPiece& signature,
340 ArtMethod* method = FindDeclaredVirtualMethod(name, signature, pointer_size);
348 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(name, signature, pointer_size);
356 ArtMethod* Class::FindInterfaceMethod(const StringPiece& name, const Signature& signature,
359 ArtMethod* method = FindDeclaredVirtualMethod(name, signature, pointer_size);
367 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(name, signature, pointer_size);
395 ArtMethod* Class::FindDeclaredDirectMethod(const StringPiece& name, const StringPiece& signature,
398 if (name == method.GetName() && method.GetSignature() == signature) {
405 ArtMethod* Class::FindDeclaredDirectMethod(const StringPiece& name, const Signature& signature
    [all...]
class.h 45 class Signature;
    [all...]
  /art/runtime/
art_method-inl.h 294 inline const Signature ArtMethod::GetSignature() {
301 return Signature::NoSignature();
utils.cc 314 std::string PrettyArguments(const char* signature) {
317 CHECK_EQ(*signature, '(');
318 ++signature; // Skip the '('.
319 while (*signature != ')') {
321 while (signature[argument_length] == '[') {
324 if (signature[argument_length] == 'L') {
325 argument_length = (strchr(signature, ';') - signature + 1);
330 std::string argument_descriptor(signature, argument_length);
333 if (signature[argument_length] != ')')
365 const Signature signature = m->GetSignature(); local
385 const Signature signature = dex_file.GetMethodSignature(method_id); local
    [all...]
  /external/pdfium/third_party/lcms2-2.6/include/
lcms2_plugin.h 209 cmsUInt32Number Magic; // 'acpp' signature
382 cmsTagTypeSignature Signature; // The signature of the type
440 cmsTagSignature Signature;
  /external/v8/test/cctest/
test-log.cc 353 v8::Local<v8::Signature> signature = v8::Signature::New(isolate, obj); local
356 v8::Local<v8::Value>(), signature),
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
OCSPResponse.java 78 * signature BIT STRING,
81 * The value for signature SHALL be computed on the hash of the DER
181 private final byte[] signature; field in class:OCSPResponse
221 signature = null;
265 // Need the DER encoded ResponseData to verify the signature later
358 // signature
359 signature = seqTmp[2].getBitString();
553 // verify the signature
581 "Error verifying OCSP Response's signature");
584 // Need responder's cert in order to verify the signature
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
crypt.py 70 """Verifies the signature on a message."""
80 def verify(self, message, signature):
81 """Verifies a message against a signature.
85 signature: string, The signature on the message.
95 crypto.verify(self._pubkey, signature, message, 'sha256')
141 string, The signature of the message for the given key.
201 from Crypto.Signature import PKCS1_v1_5
206 """Verifies the signature on a message."""
216 def verify(self, message, signature)
    [all...]
  /external/clang/lib/CodeGen/
ObjectFilePCHContainerOperations.cpp 206 Builder->getModuleDebugInfo()->setDwoId(Buffer->Signature);
  /external/guice/core/src/com/google/inject/internal/
ProviderMethod.java 258 // Use the Signature overload of getIndex because it properly uses return types to identify
262 new net.sf.cglib.core.Signature(
  /external/v8/src/compiler/
linkage.h 139 typedef Signature<LinkageLocation> LocationSignature;
  /frameworks/base/keystore/java/android/security/keystore/
KeyGenParameterSpec.java 29 import java.security.Signature;
76 * certificate will be created with an invalid signature which will not verify. Such a certificate
77 * is still useful because it provides access to the public key. To generate a valid signature for
127 * Signature signature = Signature.getInstance("SHA256withECDSA");
128 * signature.initSign(keyPair.getPrivate());
140 * alias {@code key1} authorized to be used only for signing using the RSA-PSS signature padding
153 * Signature signature = Signature.getInstance("SHA256withRSA/PSS")
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FilterGraph.java 520 Signature signature = filter.getSignature(); local
521 signature.checkInputPortsConform(filter);
522 signature.checkOutputPortsConform(filter);
  /external/v8/src/
api.h 143 V(Signature, FunctionTemplateInfo) \
263 static inline Local<Signature> SignatureToLocal(
375 MAKE_TO_LOCAL(SignatureToLocal, FunctionTemplateInfo, Signature)
  /frameworks/base/core/java/android/util/apk/
ApkSignatureSchemeV2Verifier.java 42 import java.security.Signature;
66 * APK Signature Scheme v2 verifier.
74 * JAR signature scheme but also with APK Signature Scheme v2 or newer. This attribute
75 * facilitates v2 signature stripping detection.
77 * <p>The attribute contains a comma-separated set of signature scheme IDs.
83 * Returns {@code true} if the provided APK contains an APK Signature Scheme V2 signature.
85 * <p><b>NOTE: This method does not verify the signature.</b>
97 * Verifies APK Signature Scheme v2 signatures of the provided APK and returns the certificate
267 ByteBuffer signature = getLengthPrefixedSlice(signatures); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
PackageInstallerSession.java 46 import android.content.pm.Signature;
156 private Signature[] mSignatures;
    [all...]
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 388 public final Signature[] signatures;
397 Signature[] signatures, Certificate[][] certificates, boolean coreApp,
625 pi.signatures = new Signature[N];
    [all...]
  /art/dexdump/
dexdump.cc 77 const char* signature; member in struct:art::FieldMethodInfo
361 fprintf(gOutFile, "signature : %02x%02x...%02x%02x\n",
483 const char* signature = entry.signature_ != nullptr ? entry.signature_ : ""; local
486 entry.name_, entry.descriptor_, signature);
562 const Signature signature = pDexFile->GetMethodSignature(pMethodId); local
565 backDescriptor, name, signature.ToString().c_str(), width, index);
858 const Signature signature = pDexFile->GetMethodSignature(pMethodId); local
865 codeOffset, codeOffset, tmp, name, signature.ToString().c_str())
921 const Signature signature = pDexFile->GetMethodSignature(pMethodId); local
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
CipherTest.java 32 import java.security.Signature;
    [all...]
  /toolchain/binutils/binutils-2.25/include/coff/
internal.h 58 bfd_vma nt_signature; /* required NT signature, 0x4550 */
167 char Signature[CV_INFO_SIGNATURE_LENGTH];
  /external/lzma/CPP/7zip/UI/Common/
LoadCodecs.cpp 585 ParseSignatures(arc.Signature, arc.SignatureSize, item.Signatures);
587 item.Signatures.AddNew().CopyFrom(arc.Signature, arc.SignatureSize);

Completed in 3031 milliseconds

<<111213141516171819