andre@0: /* andre@0: * secdigt.h - public data structures for digest-info objects andre@0: * andre@0: * This Source Code Form is subject to the terms of the Mozilla Public andre@0: * License, v. 2.0. If a copy of the MPL was not distributed with this andre@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ andre@0: andre@0: #ifndef _SECDIGT_H_ andre@0: #define _SECDIGT_H_ andre@0: andre@0: #include "utilrename.h" andre@0: #include "plarena.h" andre@0: #include "secoidt.h" andre@0: #include "secitem.h" andre@0: andre@0: /* andre@0: ** A PKCS#1 digest-info object andre@0: */ andre@0: struct SGNDigestInfoStr { andre@0: PLArenaPool * arena; andre@0: SECAlgorithmID digestAlgorithm; andre@0: SECItem digest; andre@0: }; andre@0: typedef struct SGNDigestInfoStr SGNDigestInfo; andre@0: andre@0: #endif /* _SECDIGT_H_ */