/external/dropbear/libtomcrypt/src/pk/asn1/der/utctime/ |
der_length_utctime.c | 15 ASN.1 DER, get length of UTCTIME, Tom St Denis 21 Gets length of DER encoding of UTCTIME 22 @param utctime The UTC time structure to get the size of 26 int der_length_utctime(ltc_utctime *utctime, unsigned long *outlen) 29 LTC_ARGCHK(utctime != NULL); 31 if (utctime->off_hh == 0 && utctime->off_mm == 0) { 44 /* $Source: /cvs/libtom/libtomcrypt/src/pk/asn1/der/utctime/der_length_utctime.c,v $ */
|
der_encode_utctime.c | 15 ASN.1 DER, encode a UTCTIME, Tom St Denis 28 @param utctime The UTC time structure to encode 33 int der_encode_utctime(ltc_utctime *utctime, 39 LTC_ARGCHK(utctime != NULL); 43 if ((err = der_length_utctime(utctime, &tmplen)) != CRYPT_OK) { 56 STORE_V(utctime->YY); 57 STORE_V(utctime->MM); 58 STORE_V(utctime->DD); 59 STORE_V(utctime->hh); 60 STORE_V(utctime->mm) [all...] |
/external/openssl/crypto/pkcs7/ |
example.c | 26 return so->value.utctime; 188 return so->value.utctime;
|
/external/dropbear/libtomcrypt/testprof/ |
der_tests.c | 115 UTCTIME { 91, 5, 6, 16, 45, 40, 1, 7, 0 } 139 static const ltc_utctime utctime = { 91, 5, 6, 16, 45, 40, 1, 7, 0 }; local 156 LTC_SET_ASN1(static_list[1], 1, LTC_ASN1_UTCTIME, (void *)&utctime, 1); 286 /* UTCTIME */ 298 if (memcmp(l->data, &utctime, sizeof(utctime))) { 459 ltc_utctime utctime = { 91, 5, 6, 16, 45, 40, 1, 7, 0 }; local 482 LTC_SET_ASN1(types, 6, LTC_ASN1_UTCTIME, &utctime, 1); 749 fprintf(stderr, "UTCTIME encode of rsa_time1 failed: %lu, %lu\n", x, (unsigned long)sizeof(rsa_time1_der)); 757 fprintf(stderr, "UTCTIME length failed to match for rsa_time1: %lu, %lu\n", x, y) [all...] |
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_pk.h | 518 /* UTCTime */ 531 int der_encode_utctime(ltc_utctime *utctime, 537 int der_length_utctime(ltc_utctime *utctime, unsigned long *outlen);
|
/external/openssl/crypto/asn1/ |
asn1.h | 540 ASN1_UTCTIME * utctime; member in union:asn1_type_st::__anon8708 [all...] |
/external/openssl/include/openssl/ |
asn1.h | 540 ASN1_UTCTIME * utctime; member in union:asn1_type_st::__anon8878 [all...] |
/external/dropbear/ |
configure | [all...] |
/external/dropbear/libtomcrypt/ |
crypt.tex | [all...] |