HomeSort by relevance Sort by last modified time
    Searched refs:SubjectSize (Results 1 - 8 of 8) sorted by null

  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
CryptX509.c 225 @param[in, out] SubjectSize The size in bytes of the CertSubject buffer on input,
229 If SubjectSize is NULL, then return FALSE.
232 @retval FALSE Invalid certificate, or the SubjectSize is too small for the result.
233 The SubjectSize will be updated with the required size.
242 IN OUT UINTN *SubjectSize
253 if (Cert == NULL || SubjectSize == NULL) {
279 if (*SubjectSize < X509NameSize) {
280 *SubjectSize = X509NameSize;
283 *SubjectSize = X509NameSize;
CryptX509Null.c 110 @param[in, out] SubjectSize The size in bytes of the CertSubject buffer on input,
123 IN OUT UINTN *SubjectSize
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLibRuntimeCryptProtocol/Pk/
CryptX509Null.c 110 @param[in, out] SubjectSize The size in bytes of the CertSubject buffer on input,
123 IN OUT UINTN *SubjectSize
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
IpSecCryptIo.c 991 @param[out] SubjectSize The size of Certificate Subject in bytes.
1002 OUT UINTN *SubjectSize
1009 *SubjectSize = 0;
1010 X509GetSubjectName (InCert, CertSize, *CertSubject, SubjectSize);
1012 *CertSubject = AllocateZeroPool (*SubjectSize);
1013 if (!X509GetSubjectName (InCert, CertSize, *CertSubject, SubjectSize)) {
IpSecCryptIo.h 812 @param[out] SubjectSize The size of Certificate Subject in bytes.
823 OUT UINTN *SubjectSize
  /device/linaro/bootloader/edk2/CryptoPkg/Application/Cryptest/
RsaVerify2.c 213 UINTN SubjectSize;
278 SubjectSize = 0;
279 Status = X509GetSubjectName (TestCert, sizeof (TestCert), NULL, &SubjectSize);
280 Subject = (UINT8 *)AllocatePool (SubjectSize);
281 Status = X509GetSubjectName (TestCert, sizeof (TestCert), Subject, &SubjectSize);
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/Ikev2/
Payload.c 288 UINTN SubjectSize;
305 SubjectSize = 0;
311 &SubjectSize
313 if (SubjectSize != 0) {
317 IdSize = sizeof (IKEV2_ID) + SubjectSize;
335 CopyMem (Id + 1, CertSubject, SubjectSize);
    [all...]
  /device/linaro/bootloader/edk2/CryptoPkg/Include/Library/
BaseCryptLib.h     [all...]

Completed in 194 milliseconds