Home
last modified time | relevance | path

Searched refs:AuthSize (Results 1 – 4 of 4) sorted by relevance

/dports/sysutils/edk2/edk2-platforms-89f6170d/Platform/Intel/MinPlatformPkg/Tcg/Tcg2PlatformPei/
H A DTcg2PlatformPei.c83 UINT16 AuthSize;
94 AuthSize = MAX_NEW_AUTHORIZATION_SIZE;
103 AuthSize = SHA1_DIGEST_SIZE;
106 AuthSize = SHA256_DIGEST_SIZE;
109 AuthSize = SHA384_DIGEST_SIZE;
112 AuthSize = SHA512_DIGEST_SIZE;
115 AuthSize = SM3_256_DIGEST_SIZE;
121 ZeroMem(NewPlatformAuth.buffer, AuthSize);
122 NewPlatformAuth.size = AuthSize;
131 CopyMem(NewPlatformAuth.buffer, Rand, AuthSize);
[all …]
/dports/sysutils/edk2/edk2-platforms-89f6170d/Platform/Intel/MinPlatformPkg/Tcg/Library/TpmPlatformHierarchyLib/
H A DTpmPlatformHierarchyLib.c99 OUT UINT16 *AuthSize in GetAuthSize() argument
153 *AuthSize = mAuthSize; in GetAuthSize()
166 UINT16 AuthSize; in RandomizePlatformAuth() local
175 GetAuthSize (&AuthSize); in RandomizePlatformAuth()
177 ZeroMem (NewPlatformAuth.buffer, AuthSize); in RandomizePlatformAuth()
178 NewPlatformAuth.size = AuthSize; in RandomizePlatformAuth()
187 CopyMem (NewPlatformAuth.buffer, Rand, AuthSize); in RandomizePlatformAuth()
196 ZeroMem (NewPlatformAuth.buffer, AuthSize); in RandomizePlatformAuth()
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/p2p/discover/v5wire/
H A Dencoding.go55 AuthSize uint16
256 AuthSize: uint16(authsize),
437 authDataEnd := sizeofStaticPacketData + int(head.AuthSize)
537 return auth, fmt.Errorf("header authsize %d too low for handshake", head.AuthSize)
629 if int(h.AuthSize) > packetLen {
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/NetworkPkg/IpSecDxe/
H A DIpSecImpl.c789 UINTN AuthSize; in IpSecEspAuthVerifyPayload() local
796 AuthSize = EspSize - IcvSize; in IpSecEspAuthVerifyPayload()
802 HashFragment[0].DataSize = AuthSize; in IpSecEspAuthVerifyPayload()
820 if (CompareMem (EspBuffer + AuthSize, IcvBuffer, IcvSize) == 0) { in IpSecEspAuthVerifyPayload()