Home | History | Annotate | Download | only in bodge

Lines Matching refs:cx

61 **	"cx" is the random number generator context
274 extern SECStatus RC4_InitContext(RC4Context *cx,
284 ** "cx" the context
287 extern void RC4_DestroyContext(RC4Context *cx, PRBool freeit);
291 ** "cx" the context
300 extern SECStatus RC4_Encrypt(RC4Context *cx, unsigned char *output,
306 ** "cx" the context
315 extern SECStatus RC4_Decrypt(RC4Context *cx, unsigned char *output,
340 extern SECStatus RC2_InitContext(RC2Context *cx,
350 ** "cx" the context
353 extern void RC2_DestroyContext(RC2Context *cx, PRBool freeit);
357 ** "cx" the context
366 extern SECStatus RC2_Encrypt(RC2Context *cx, unsigned char *output,
372 ** "cx" the context
381 extern SECStatus RC2_Decrypt(RC2Context *cx, unsigned char *output,
403 extern SECStatus RC5_InitContext(RC5Context *cx,
413 ** "cx" the context
416 extern void RC5_DestroyContext(RC5Context *cx, PRBool freeit);
420 ** "cx" the context
429 extern SECStatus RC5_Encrypt(RC5Context *cx, unsigned char *output,
435 ** "cx" the context
445 extern SECStatus RC5_Decrypt(RC5Context *cx, unsigned char *output,
472 extern SECStatus DES_InitContext(DESContext *cx,
482 ** "cx" the context
485 extern void DES_DestroyContext(DESContext *cx, PRBool freeit);
489 ** "cx" the context
500 extern SECStatus DES_Encrypt(DESContext *cx, unsigned char *output,
506 ** "cx" the context
517 extern SECStatus DES_Decrypt(DESContext *cx, unsigned char *output,
529 extern SECStatus SEED_InitContext(SEEDContext *cx,
535 extern void SEED_DestroyContext(SEEDContext *cx, PRBool freeit);
537 SEED_Encrypt(SEEDContext *cx, unsigned char *output,
541 SEED_Decrypt(SEEDContext *cx, unsigned char *output,
562 extern SECStatus AES_InitContext(AESContext *cx,
572 ** "cx" the context
576 AES_DestroyContext(AESContext *cx, PRBool freeit);
580 ** "cx" the context
590 AES_Encrypt(AESContext *cx, unsigned char *output,
596 ** "cx" the context
606 AES_Decrypt(AESContext *cx, unsigned char *output,
627 AESKeyWrap_InitContext(AESKeyWrapContext *cx,
637 ** "cx" the context
641 AESKeyWrap_DestroyContext(AESKeyWrapContext *cx, PRBool freeit);
645 ** "cx" the context
655 AESKeyWrap_Encrypt(AESKeyWrapContext *cx, unsigned char *output,
661 ** "cx" the context
671 AESKeyWrap_Decrypt(AESKeyWrapContext *cx, unsigned char *output,
690 extern SECStatus Camellia_InitContext(CamelliaContext *cx,
699 ** "cx" the context
703 Camellia_DestroyContext(CamelliaContext *cx, PRBool freeit);
707 ** "cx" the context
717 Camellia_Encrypt(CamelliaContext *cx, unsigned char *output,
723 ** "cx" the context
733 Camellia_Decrypt(CamelliaContext *cx, unsigned char *output,
762 ** "cx" the context
765 extern void MD5_DestroyContext(MD5Context *cx, PRBool freeit);
770 extern void MD5_Begin(MD5Context *cx);
774 ** "cx" the context
778 extern void MD5_Update(MD5Context *cx,
783 ** "cx" the context
789 extern void MD5_End(MD5Context *cx, unsigned char *digest,
794 * "cx" the context
797 extern unsigned int MD5_FlattenSize(MD5Context *cx);
801 * "cx" the context
805 extern SECStatus MD5_Flatten(MD5Context *cx,unsigned char *space);
819 extern void MD5_TraceState(MD5Context *cx);
840 ** "cx" the context
843 extern void MD2_DestroyContext(MD2Context *cx, PRBool freeit);
848 extern void MD2_Begin(MD2Context *cx);
852 ** "cx" the context
856 extern void MD2_Update(MD2Context *cx,
861 ** "cx" the context
867 extern void MD2_End(MD2Context *cx, unsigned char *digest,
872 * "cx" the context
875 extern unsigned int MD2_FlattenSize(MD2Context *cx);
879 * "cx" the context
883 extern SECStatus MD2_Flatten(MD2Context *cx,unsigned char *space);
918 ** "cx" the context
921 extern void SHA1_DestroyContext(SHA1Context *cx, PRBool freeit);
926 extern void SHA1_Begin(SHA1Context *cx);
930 ** "cx" the context
934 extern void SHA1_Update(SHA1Context *cx, const unsigned char *input,
939 ** "cx" the context
945 extern void SHA1_End(SHA1Context *cx, unsigned char *digest,
951 extern void SHA1_TraceState(SHA1Context *cx);
955 * "cx
958 extern unsigned int SHA1_FlattenSize(SHA1Context *cx);
962 * "cx" the context
966 extern SECStatus SHA1_Flatten(SHA1Context *cx,unsigned char *space);
980 extern void SHA256_DestroyContext(SHA256Context *cx, PRBool freeit);
981 extern void SHA256_Begin(SHA256Context *cx);
982 extern void SHA256_Update(SHA256Context *cx, const unsigned char *input,
984 extern void SHA256_End(SHA256Context *cx, unsigned char *digest,
989 extern void SHA256_TraceState(SHA256Context *cx);
990 extern unsigned int SHA256_FlattenSize(SHA256Context *cx);
991 extern SECStatus SHA256_Flatten(SHA256Context *cx,unsigned char *space);
998 extern void SHA512_DestroyContext(SHA512Context *cx, PRBool freeit);
999 extern void SHA512_Begin(SHA512Context *cx);
1000 extern void SHA512_Update(SHA512Context *cx, const unsigned char *input,
1002 extern void SHA512_End(SHA512Context *cx, unsigned char *digest,
1007 extern void SHA512_TraceState(SHA512Context *cx);
1008 extern unsigned int SHA512_FlattenSize(SHA512Context *cx);
1009 extern SECStatus SHA512_Flatten(SHA512Context *cx,unsigned char *space);
1016 extern void SHA384_DestroyContext(SHA384Context *cx, PRBool freeit);
1017 extern void SHA384_Begin(SHA384Context *cx);
1018 extern void SHA384_Update(SHA384Context *cx, const unsigned char *input,
1020 extern void SHA384_End(SHA384Context *cx, unsigned char *digest,
1025 extern void SHA384_TraceState(SHA384Context *cx);
1026 extern unsigned int SHA384_FlattenSize(SHA384Context *cx);
1027 extern SECStatus SHA384_Flatten(SHA384Context *cx,unsigned char *space);