1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef _PSE_PR_COMMON_H
- #define _PSE_PR_COMMON_H
- #include <cstddef>
- #include <stdint.h>
- #define MAX_SIGRL_ENTRIES 150
- #define MAX_PRIVRL_ENTRIES 100
- uint32_t NeededBytesForPairingBlob();
- uint32_t NeededBytesForREPORT();
- uint32_t NeededBytesForS2(uint32_t nCertChain, uint32_t nRL, uint32_t nOcspResp);
- uint32_t MaxBytesForCSR();
- #endif
|