OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SHA512Context
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/crypto/third_party/nss/
chromium-blapi.h
67
extern
SHA512Context
*SHA512_NewContext(void);
68
extern void SHA512_DestroyContext(
SHA512Context
*cx, PRBool freeit);
69
extern void SHA512_Begin(
SHA512Context
*cx);
70
extern void SHA512_Update(
SHA512Context
*cx, const unsigned char *input,
72
extern void SHA512_End(
SHA512Context
*cx, unsigned char *digest,
77
extern void SHA512_TraceState(
SHA512Context
*cx);
78
extern unsigned int SHA512_FlattenSize(
SHA512Context
*cx);
79
extern SECStatus SHA512_Flatten(
SHA512Context
*cx,unsigned char *space);
80
extern
SHA512Context
* SHA512_Resurrect(unsigned char *space, void *arg);
81
extern void SHA512_Clone(
SHA512Context
*dest, SHA512Context *src)
[
all
...]
chromium-blapit.h
87
typedef struct SHA512ContextStr
SHA512Context
;
sha512.cc
685
SHA512Context
*
688
SHA512Context
*ctx = PORT_New(
SHA512Context
);
693
SHA512_DestroyContext(
SHA512Context
*ctx, PRBool freeit)
701
SHA512_Begin(
SHA512Context
*ctx)
791
SHA512_Compress(
SHA512Context
*ctx)
1044
SHA512_Update(
SHA512Context
*ctx, const unsigned char *input,
1086
SHA512_End(
SHA512Context
*ctx, unsigned char *digest,
1138
SHA512Context
ctx;
1156
void SHA512_TraceState(
SHA512Context
*ctx) {
[
all
...]
Completed in 84 milliseconds