OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
994
@param[out]
SubjectSize
The size of Certificate Subject in bytes.
1005
OUT UINTN *
SubjectSize
1012
*
SubjectSize
= 0;
1013
X509GetSubjectName (InCert, CertSize, *CertSubject,
SubjectSize
);
1015
*CertSubject = AllocateZeroPool (*
SubjectSize
);
1016
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
310
UINTN
SubjectSize
;
327
SubjectSize
= 0;
333
&
SubjectSize
335
if (
SubjectSize
!= 0) {
339
IdSize = sizeof (IKEV2_ID) +
SubjectSize
;
362
CopyMem (Id + 1, CertSubject,
SubjectSize
);
[
all
...]
/device/linaro/bootloader/edk2/CryptoPkg/Include/Library/
BaseCryptLib.h
[
all
...]
Completed in 868 milliseconds