HomeSort by relevance Sort by last modified time
    Searched refs:signature (Results 676 - 700 of 1427) sorted by null

<<21222324252627282930>>

  /external/openssl/crypto/asn1/
t_crl.c 128 X509_signature_print(out, x->sig_alg, x->signature);
  /external/openssl/crypto/ocsp/
ocsp_asn.c 64 ASN1_SIMPLE(OCSP_SIGNATURE, signature, ASN1_BIT_STRING),
163 ASN1_SIMPLE(OCSP_BASICRESP, signature, ASN1_BIT_STRING),
  /external/wpa_supplicant_8/src/tls/
x509v3.h 52 struct x509_algorithm_identifier signature; member in struct:x509_certificate
  /hardware/qcom/keymaster/
keymaster_qcom.h 172 * signed_data : signature
195 * signature : Offset to the signature data buffer (from signed data buffer)
196 * slen : Signature data length
204 uint32_t signature; member in struct:keymaster_verify_data_cmd
  /ndk/tests/build/issue20862-libpng-O0/jni/
pnginfo.h 77 png_byte signature[8]; /* magic bytes read by libpng from start of file */ member in struct:png_info_def
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm/
mce.h 76 * carries a signature to make it easier to find from external
84 char signature[12]; /* "MACHINECHECK" */ member in struct:mce_log
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm/
mce.h 76 * carries a signature to make it easier to find from external
84 char signature[12]; /* "MACHINECHECK" */ member in struct:mce_log
  /system/core/fastbootd/commands/
partitions.h 81 uint8_t signature[8]; member in struct:GPT_header
  /external/chromium_org/chrome/browser/chromeos/login/managed/
supervised_user_login_flow.cc 110 std::string signature; local
132 base::Base64Decode(base64_signature, &signature);
146 // signature key, use Migrate privilege instead of AuthorizedUpdate.
170 signature,
  /external/chromium_org/chrome/browser/safe_browsing/
pe_image_reader_win.cc 179 const DWORD* signature = NULL; local
180 if (!GetStructureAt(GetDosHeader()->e_lfanew, &signature) ||
181 *signature != IMAGE_NT_SIGNATURE) {
  /external/chromium_org/chromeos/network/
policy_util.cc 34 const onc::OncValueSignature& signature,
50 onc::GetFieldSignature(signature, field_name);
61 onc::FieldIsCredential(signature, field_name)) {
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLSignature.java 28 * Implements the subset of the JDK Signature interface needed for
29 * signature verification using OpenSSL.
113 throw new InvalidKeyException("Signature initialized as " + engineType
119 throw new InvalidKeyException("Signature initialized as " + engineType
125 throw new InvalidKeyException("Signature initialized as " + engineType
190 byte[] signature = new byte[bytesWritten];
191 System.arraycopy(buffer, 0, signature, 0, bytesWritten);
193 return signature;
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
ClassEmitter.java 34 private Signature staticHookSig;
94 staticHookSig = new Signature("CGLIB$STATICHOOK" + getNextHook(), "()V");
136 public CodeEmitter begin_method(int access, Signature sig, Type[] exceptions) {
244 String signature,
262 String signature,
271 String signature,
274 new Signature(name, desc),
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
MethodVisitorTee.java 131 public void visitLocalVariable(String name, String desc, String signature, Label start, Label end, int index) {
132 mv1.visitLocalVariable(name, desc, signature, start, end, index);
133 mv2.visitLocalVariable(name, desc, signature, start, end, index);
  /external/proguard/src/proguard/optimize/
MethodDescriptorShrinker.java 83 // Shrink the signature and parameter annotations.
139 // Compute the new signature.
140 String signature = clazz.getString(signatureAttribute.u2signatureIndex); local
141 String newSignature = shrinkDescriptor(method, signature);
143 // Update the signature.
150 signature,
203 * Returns a shrunk descriptor or signature of the given method.
  /frameworks/av/drm/mediadrm/plugins/mock/
MockDrmCryptoPlugin.h 123 Vector<uint8_t> &signature);
128 Vector<uint8_t> const &signature,
135 Vector<uint8_t> &signature);
  /frameworks/native/include/media/drm/
DrmAPI.h 207 // the secure stop message to the server which verifies the signature and
281 // Compute a signature on the provided message using the mac algorithm
283 // and return the signature.
287 Vector<uint8_t> &signature) = 0;
289 // Compute a signature on the provided message using the mac algorithm
296 Vector<uint8_t> const &signature,
300 // Compute an RSA signature on the provided message using the algorithm
306 Vector<uint8_t> &signature) = 0;
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
JarUtils.java 32 import java.security.Signature;
58 * This method handle all the work with PKCS7, ASN1 encoding, signature verifying,
62 * @param signature - the input stream of signature file to be verified
63 * @param signatureBlock - the input stream of corresponding signature block file
64 * @return array of certificates used to verify the signature file
66 * @throws GeneralSecurityException - if signature verification process fails
68 public static Certificate[] verifySignature(InputStream signature, InputStream
123 // Get Signature instance
129 Signature sig = null
    [all...]
  /cts/tests/signature/src/android/signature/cts/
SignatureTest.java 17 package android.signature.cts;
20 import android.signature.R;
21 import android.signature.cts.JDiffClassDescription.JDiffConstructor;
22 import android.signature.cts.JDiffClassDescription.JDiffField;
23 import android.signature.cts.JDiffClassDescription.JDiffMethod;
38 * Performs the signature check via a JUnit test.
142 * Signature test entry point.
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 70 char *signature; member in struct:dataRecord
226 /* Parse the name to support "class.method signature" */
229 records[nextRecord].signature = NULL;
248 records[nextRecord].signature = strndup(save_cp, len);
404 } else if (pRecord->signature == NULL) {
411 pRecord->methodName, pRecord->signature);
  /external/chromium_org/chrome/test/chromedriver/
util.cc 187 uint32 signature; local
188 if (!stream.ReadUInt32(&signature) || signature != kFileHeaderSignature) {
189 *error_msg = "invalid file header signature";
254 if (!stream.ReadUInt32(&signature) ||
255 signature != kDataDescriptorSignature) {
256 *error_msg = "invalid data descriptor signature";
  /external/chromium_org/components/policy/core/common/cloud/
cloud_policy_validator.cc 26 // DER-encoded ASN.1 object identifier for the SHA1-RSA signature algorithm.
32 // DER-encoded ASN.1 object identifier for the SHA256-RSA signature algorithm
49 // Recorded when the policy being verified has no key signature (e.g. policy
52 // Recorded when the key signature did not match the expected value (in
278 // Policy does not contain a verification signature, so log an error.
290 LOG(ERROR) << "Signature verification failed";
296 // Signature verification succeeded - return success to the caller.
297 DVLOG(1) << "Signature verification succeeded";
307 const std::string& signature) {
327 return VerifySignature(signed_data_as_string, verification_key, signature,
    [all...]
  /external/chromium_org/google_apis/gaia/
oauth_request_signer.cc 257 // Implements shared signing logic, generating the signature and storing it in
258 // |parameters|. Returns true if the signature has been generated succesfully.
275 std::string signature; local
278 is_signed = SignHmacSha1(base, key, &signature);
281 is_signed = SignRsaSha1(base, key, &signature);
284 is_signed = SignPlaintext(base, key, &signature);
290 (*parameters)[kOAuthSignatureLabel] = signature;
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
AsmGenerator.java 91 for (String signature : createInfo.getDelegateMethods()) {
92 int pos = signature.indexOf('#');
93 if (pos <= 0 || pos >= signature.length() - 1) {
96 String className = binaryToInternalClassName(signature.substring(0, pos));
97 String methodName = signature.substring(pos + 1);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
UiccCarrierPrivilegeRules.java 23 import android.content.pm.Signature;
203 * @param signature The signature of the certificate.
207 public int getCarrierPrivilegeStatus(Signature signature, String packageName) {
208 Rlog.d(LOG_TAG, "hasCarrierPrivileges: " + signature + " : " + packageName);
218 byte[] certHash = getCertHash(signature);
246 Signature[] signatures = pInfo.signatures;
247 for (Signature sig : signatures) {
455 * Converts a Signature into a Certificate hash usable for comparison
    [all...]

Completed in 630 milliseconds

<<21222324252627282930>>