Home
last modified time | relevance | path

Searched refs:ticket (Results 1 – 25 of 80) sorted by relevance

1234

/external/tpm2/
DTicket.c56 TPMT_TK_VERIFIED *ticket // OUT: verified ticket in TicketComputeVerified() argument
62 ticket->tag = TPM_ST_VERIFIED; in TicketComputeVerified()
63 ticket->hierarchy = hierarchy; in TicketComputeVerified()
67 ticket->digest.t.size = CryptStartHMAC2B(CONTEXT_INTEGRITY_HASH_ALG, in TicketComputeVerified()
70 CryptUpdateDigestInt(&hmacState, sizeof(TPM_ST), &ticket->tag); in TicketComputeVerified()
76 CryptCompleteHMAC2B(&hmacState, &ticket->digest.b); in TicketComputeVerified()
93 TPMT_TK_AUTH *ticket // OUT: Created ticket in TicketComputeAuth() argument
101 ticket->tag = type; in TicketComputeAuth()
102 ticket->hierarchy = hierarchy; in TicketComputeAuth()
104 ticket->digest.t.size = CryptStartHMAC2B(CONTEXT_INTEGRITY_HASH_ALG, in TicketComputeAuth()
[all …]
DPolicyTicket.c63 TicketComputeAuth(in->ticket.tag, in->ticket.hierarchy, timeout, &in->cpHashA, in TPM2_PolicyTicket()
67 if(!Memory2BEqual(&in->ticket.digest.b, &ticketToCompare.digest.b)) in TPM2_PolicyTicket()
74 if(in->ticket.tag == TPM_ST_AUTH_SIGNED) in TPM2_PolicyTicket()
76 else if(in->ticket.tag == TPM_ST_AUTH_SECRET) in TPM2_PolicyTicket()
DTicket_fp.h17 TPMT_TK_AUTH *ticket // OUT: Created ticket
23 TPMT_TK_CREATION *ticket // OUT: created ticket
29 TPMT_TK_HASHCHECK *ticket // OUT: Created ticket
35 TPMT_TK_VERIFIED *ticket // OUT: verified ticket
DSign.c30 TPMT_TK_HASHCHECK ticket; in TPM2_Sign() local
55 &in->digest, &ticket); in TPM2_Sign()
57 if(!Memory2BEqual(&in->validation.digest.b, &ticket.digest.b)) in TPM2_Sign()
DCertifyCreation.c31 TPMT_TK_CREATION ticket; in TPM2_CertifyCreation() local
41 &in->creationHash, &ticket); in TPM2_CertifyCreation()
43 if(!Memory2BEqual(&ticket.digest.b, &in->creationTicket.digest.b)) in TPM2_CertifyCreation()
DPolicyAuthorize.c28 TPMT_TK_VERIFIED ticket; in TPM2_PolicyAuthorize() local
75 &in->keySign, &ticket); in TPM2_PolicyAuthorize()
78 if(!Memory2BEqual(&in->checkTicket.digest.b, &ticket.digest.b)) in TPM2_PolicyAuthorize()
/external/e2fsprogs/lib/et/test_cases/
Dheimdal.et26 ec GC_TKFIL, "Can't read Kerberos ticket file"
27 ec GC_NOTKT, "Can't find Kerberos ticket or TGT"
32 ec RD_AP_EXP, "Kerberos ticket expired"
33 ec RD_AP_NYV, "Kerberos ticket not yet valid"
35 ec RD_AP_NOT_US, "The kerberos ticket isn't for us"
49 ec GT_PW_NULLTKT, "Null Kerberos ticket returned by KDC"
58 ec AD_NOTGT, "Don't have Kerberos ticket-granting ticket"
60 ec NO_TKT_FIL, "No ticket file found"
61 ec TKT_FIL_ACC, "Couldn't access ticket file"
62 ec TKT_FIL_LCK, "Couldn't lock ticket file"
[all …]
Dsimple.et4 "Can't read ticket file"
7 "Can't find ticket or TGT"
22 "The ticket isn't for us"
61 "Null ticket returned by KDC"
/external/icu/icu4c/source/tools/toolutil/
Dudbgutil.cpp600 U_CAPI char *udbg_knownIssueURLFrom(const char *ticket, char *buf) { in udbg_knownIssueURLFrom() argument
601 if( ticket==NULL ) { in udbg_knownIssueURLFrom()
605 if( !strncmp(ticket, CLDR_TICKET_PREFIX, strlen(CLDR_TICKET_PREFIX)) ) { in udbg_knownIssueURLFrom()
607 strcat( buf, ticket+strlen(CLDR_TICKET_PREFIX) ); in udbg_knownIssueURLFrom()
610 strcat( buf, ticket ); in udbg_knownIssueURLFrom()
619 U_CAPI void *udbg_knownIssue_openU(void *ptr, const char *ticket, char *where, const UChar *msg, UB… in udbg_knownIssue_openU() argument
624 printf("%s\tKnown Issue #%s\n", where, ticket); in udbg_knownIssue_openU()
629 U_CAPI void *udbg_knownIssue_open(void *ptr, const char *ticket, char *where, const char *msg, UBoo… in udbg_knownIssue_open() argument
635 printf("%s\tKnown Issue #%s \"%s\n", where, ticket, msg); in udbg_knownIssue_open()
660 …void add(const char *ticket, const char *where, const UChar *msg, UBool *firstForTicket, UBool *fi…
[all …]
Dudbgutil.h122 U_CAPI char *udbg_knownIssueURLFrom(const char *ticket, char *buf);
129 U_CAPI void *udbg_knownIssue_openU(void *ptr, const char *ticket, char *where, const UChar *msg, UB…
138 U_CAPI void *udbg_knownIssue_open(void *ptr, const char *ticket, char *where, const char *msg, UBoo…
/external/valgrind/coregrind/m_scheduler/
Dticket-lock-linux.c116 unsigned ticket, futex_value; in acquire_sched_lock() local
120 ticket = __sync_fetch_and_add(&p->tail, 1); in acquire_sched_lock()
121 futex = &p->futex[ticket & TL_FUTEX_MASK]; in acquire_sched_lock()
124 VG_(gettid)(), ticket); in acquire_sched_lock()
128 if (ticket == p->head) in acquire_sched_lock()
133 VG_(gettid)(), ticket, (long)(futex - p->futex), in acquire_sched_lock()
/external/autotest/client/common_lib/cros/fake_device_server/client_lib/
Dregistration.py98 ticket = self.create_registration_ticket()
99 logging.info('Initial Ticket: %s', ticket)
100 ticket_id = ticket['id']
106 ticket = self.update_registration_ticket(
112 logging.info('Updated Ticket After Claiming: %s', ticket)
/external/autotest/client/common_lib/cros/fake_device_server/
Dregistration_tickets.py50 ticket = {'kind': 'clouddevices#registrationTicket',
53 return ticket
56 def _finalize(self, id, api_key, ticket): argument
58 if 'userEmail' not in ticket:
129 ticket = self.resource.get_data_val(id, api_key)
131 return self._finalize(id, api_key, ticket)
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
DTestFmwk.java136 protected static boolean logKnownIssue(String ticket, String comment) { in logKnownIssue() argument
150 if (ticket != null && ticket.length() > 0) { in logKnownIssue()
152 ticket = ticket.toLowerCase(Locale.ENGLISH); in logKnownIssue()
153 if (ticket.startsWith(CLDR_TICKET_PREFIX)) { in logKnownIssue()
155 ticket = ticket.substring(CLDR_TICKET_PREFIX.length()); in logKnownIssue()
157 ticketLink = (isCldr ? CLDR_TRAC_URL : ICU_TRAC_URL) + ticket; in logKnownIssue()
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
DTestFmwk.java135 protected static boolean logKnownIssue(String ticket, String comment) { in logKnownIssue() argument
149 if (ticket != null && ticket.length() > 0) { in logKnownIssue()
151 ticket = ticket.toLowerCase(Locale.ENGLISH); in logKnownIssue()
152 if (ticket.startsWith(CLDR_TICKET_PREFIX)) { in logKnownIssue()
154 ticket = ticket.substring(CLDR_TICKET_PREFIX.length()); in logKnownIssue()
156 ticketLink = (isCldr ? CLDR_TRAC_URL : ICU_TRAC_URL) + ticket; in logKnownIssue()
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/data/
Dcollationtest.txt510 ** test: secondary tailoring gaps, ICU ticket 9362
537 ** test: tertiary tailoring gaps, ICU ticket 9362
714 ** test: contraction inside extension, ICU ticket 9378
721 ** test: no duplicate tailored CEs for different reset positions with same CEs, ICU ticket 10104
737 ** test: later rule does not affect earlier reset position, ICU ticket 10105
748 ** test: later rule does not affect earlier extension (1), ICU ticket 10105
764 ** test: later rule does not affect earlier extension (2), ICU ticket 10105
775 ** test: later rule does not affect earlier extension (3), ICU ticket 10105
785 ** test: extension contains tailored character, ICU ticket 10105
859 ** test: tailor contraction together with nearly equivalent prefix, ICU ticket 10101
[all …]
/external/icu/icu4c/source/test/testdata/
Dcollationtest.txt508 ** test: secondary tailoring gaps, ICU ticket 9362
535 ** test: tertiary tailoring gaps, ICU ticket 9362
712 ** test: contraction inside extension, ICU ticket 9378
719 ** test: no duplicate tailored CEs for different reset positions with same CEs, ICU ticket 10104
735 ** test: later rule does not affect earlier reset position, ICU ticket 10105
746 ** test: later rule does not affect earlier extension (1), ICU ticket 10105
762 ** test: later rule does not affect earlier extension (2), ICU ticket 10105
773 ** test: later rule does not affect earlier extension (3), ICU ticket 10105
783 ** test: extension contains tailored character, ICU ticket 10105
857 ** test: tailor contraction together with nearly equivalent prefix, ICU ticket 10101
[all …]
Dconversion.txt54 … // Test ticket 6789: implement Java-compatible Unicode, UnicodeBig and UnicodeLittle converters
81 // Test ticket 7704: implement Java-compatible "UTF-16" converter.
87 // Test ticket 5691: consistent illegal sequences
90 // Unfortunately, we cannot use the Shift-JIS examples from the ticket
94 // The byte sequences are generally slightly different from the ticket
167 // Test ticket 5691: consistent illegal sequences
185 // Test ticket 5691: ISO-2022-JP-2 with illegal single-shift SS2 and SS3 sequences.
202 * ICU 4.4 (ticket #7314) removes mappings for CNS 11643 planes 3..7
211 // Test ticket 5691: HZ with illegal tilde sequences.
221 // Test ticket 5691: Example from Peter Edberg.
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/
Dcollationtest.txt510 ** test: secondary tailoring gaps, ICU ticket 9362
537 ** test: tertiary tailoring gaps, ICU ticket 9362
714 ** test: contraction inside extension, ICU ticket 9378
721 ** test: no duplicate tailored CEs for different reset positions with same CEs, ICU ticket 10104
737 ** test: later rule does not affect earlier reset position, ICU ticket 10105
748 ** test: later rule does not affect earlier extension (1), ICU ticket 10105
764 ** test: later rule does not affect earlier extension (2), ICU ticket 10105
775 ** test: later rule does not affect earlier extension (3), ICU ticket 10105
785 ** test: extension contains tailored character, ICU ticket 10105
859 ** test: tailor contraction together with nearly equivalent prefix, ICU ticket 10101
[all …]
/external/cros/system_api/dbus/authpolicy/
Dactive_directory_info.proto64 // Kerberos ticket expired while renewing credentials.
109 // Ticket-granting-ticket status.
127 // Status of the user's ticket-granting-ticket (TGT).
/external/autotest/client/common_lib/cros/tendo/
Dbuffet_tester.py210 ticket = self._registration_client.create_registration_ticket()
211 logging.info('Created ticket: %r', ticket)
217 buffet.manager.RegisterDevice(dbus.String(ticket['id'])))
/external/boringssl/src/ssl/
Dtls13_server.cc174 CBB body, ticket, extensions; in add_new_session_tickets() local
179 !CBB_add_u16_length_prefixed(&body, &ticket) || in add_new_session_tickets()
180 !ssl_encrypt_ticket(ssl, &ticket, session) || in add_new_session_tickets()
284 CBS ticket, binders; in select_session() local
286 if (!ssl_ext_pre_shared_key_parse_clienthello(hs, &ticket, &binders, in select_session()
297 ssl_process_ticket(ssl, &session, &unused_renew, CBS_data(&ticket), in select_session()
298 CBS_len(&ticket), NULL, 0); in select_session()
Dt1_lib.cc988 CBB ticket; in ext_ticket_add_clienthello() local
990 !CBB_add_u16_length_prefixed(out, &ticket) || in ext_ticket_add_clienthello()
991 !CBB_add_bytes(&ticket, ticket_data, ticket_len) || in ext_ticket_add_clienthello()
1896 CBB contents, identity, ticket, binders, binder; in ext_pre_shared_key_add_clienthello() local
1900 !CBB_add_u16_length_prefixed(&identity, &ticket) || in ext_pre_shared_key_add_clienthello()
1901 !CBB_add_bytes(&ticket, ssl->session->tlsext_tick, in ext_pre_shared_key_add_clienthello()
3043 int *out_renew_ticket, const uint8_t *ticket, in ssl_decrypt_ticket_with_cipher_ctx() argument
3057 const uint8_t *iv = ticket + SSL_TICKET_KEY_NAME_LEN; in ssl_decrypt_ticket_with_cipher_ctx()
3061 ssl, (uint8_t *)ticket /* name */, (uint8_t *)iv, cipher_ctx.get(), in ssl_decrypt_ticket_with_cipher_ctx()
3072 if (OPENSSL_memcmp(ticket, ssl_ctx->tlsext_tick_key_name, in ssl_decrypt_ticket_with_cipher_ctx()
[all …]
/external/icu/icu4c/source/tools/ctestfw/
Dctest.c94 static UBool vlog_knownIssue(const char *ticket, const char *pattern, va_list ap);
698 static UBool vlog_knownIssue(const char *ticket, const char *pattern, va_list ap) in vlog_knownIssue() argument
708 knownList = udbg_knownIssue_open(knownList, ticket, gTestName, buf, in vlog_knownIssue()
712 log_info("(Known issue #%s) %s\n", ticket, buf); in vlog_knownIssue()
714 log_verbose("(Known issue #%s) %s\n", ticket, buf); in vlog_knownIssue()
809 log_knownIssue(const char *ticket, const char *pattern, ...) { in log_knownIssue() argument
812 return vlog_knownIssue(ticket, pattern, ap); in log_knownIssue()
/external/icu/icu4c/source/test/intltest/
Dintltest.h177 UBool logKnownIssue( const char *ticket, const UnicodeString &message );
186 UBool logKnownIssue( const char *ticket );
196 UBool logKnownIssue( const char *ticket, const char *fmt, ...);

1234