8 references to ReadUInt32
Microsoft.CodeAnalysis (8)
StrongName\CryptoBlobParser.cs (8)
101var sigAlgId = blobReader.ReadUInt32(); 103var hashAlgId = blobReader.ReadUInt32(); 105var publicKeySize = blobReader.ReadUInt32(); 218uint algId = br.ReadUInt32(); // BLOBHEADER.aiKeyAlg 219uint magic = br.ReadUInt32(); // RSAPubKey.magic: Expected to be 0x31415352 ('RSA1') or 0x32415352 ('RSA2') 220var bitLen = br.ReadUInt32(); // Bit Length for Modulus 221var pubExp = br.ReadUInt32(); // Exponent 272uint expAsDword = br.ReadUInt32();