~ubuntu-branches/ubuntu/lucid/openssl/lucid-proposed

« back to all changes in this revision

Viewing changes to crypto/dsa/dsa_err.c

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2009-06-13 18:15:46 UTC
  • mto: (11.1.5 squeeze)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: james.westby@ubuntu.com-20090613181546-vbfntai3b009dl1u
Tags: upstream-0.9.8k
ImportĀ upstreamĀ versionĀ 0.9.8k

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* crypto/dsa/dsa_err.c */
2
2
/* ====================================================================
3
 
 * Copyright (c) 1999-2005 The OpenSSL Project.  All rights reserved.
 
3
 * Copyright (c) 1999-2007 The OpenSSL Project.  All rights reserved.
4
4
 *
5
5
 * Redistribution and use in source and binary forms, with or without
6
6
 * modification, are permitted provided that the following conditions
73
73
{ERR_FUNC(DSA_F_D2I_DSA_SIG),   "d2i_DSA_SIG"},
74
74
{ERR_FUNC(DSA_F_DSAPARAMS_PRINT),       "DSAparams_print"},
75
75
{ERR_FUNC(DSA_F_DSAPARAMS_PRINT_FP),    "DSAparams_print_fp"},
 
76
{ERR_FUNC(DSA_F_DSA_BUILTIN_KEYGEN),    "DSA_BUILTIN_KEYGEN"},
 
77
{ERR_FUNC(DSA_F_DSA_BUILTIN_PARAMGEN),  "DSA_BUILTIN_PARAMGEN"},
76
78
{ERR_FUNC(DSA_F_DSA_DO_SIGN),   "DSA_do_sign"},
77
79
{ERR_FUNC(DSA_F_DSA_DO_VERIFY), "DSA_do_verify"},
 
80
{ERR_FUNC(DSA_F_DSA_GENERATE_PARAMETERS),       "DSA_generate_parameters"},
78
81
{ERR_FUNC(DSA_F_DSA_NEW_METHOD),        "DSA_new_method"},
79
82
{ERR_FUNC(DSA_F_DSA_PRINT),     "DSA_print"},
80
83
{ERR_FUNC(DSA_F_DSA_PRINT_FP),  "DSA_print_fp"},
 
84
{ERR_FUNC(DSA_F_DSA_SET_DEFAULT_METHOD),        "DSA_set_default_method"},
 
85
{ERR_FUNC(DSA_F_DSA_SET_METHOD),        "DSA_set_method"},
81
86
{ERR_FUNC(DSA_F_DSA_SIGN),      "DSA_sign"},
82
87
{ERR_FUNC(DSA_F_DSA_SIGN_SETUP),        "DSA_sign_setup"},
83
88
{ERR_FUNC(DSA_F_DSA_SIG_NEW),   "DSA_SIG_new"},
91
96
        {
92
97
{ERR_REASON(DSA_R_BAD_Q_VALUE)           ,"bad q value"},
93
98
{ERR_REASON(DSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE),"data too large for key size"},
 
99
{ERR_REASON(DSA_R_KEY_SIZE_TOO_SMALL)    ,"key size too small"},
94
100
{ERR_REASON(DSA_R_MISSING_PARAMETERS)    ,"missing parameters"},
95
101
{ERR_REASON(DSA_R_MODULUS_TOO_LARGE)     ,"modulus too large"},
 
102
{ERR_REASON(DSA_R_NON_FIPS_METHOD)       ,"non fips method"},
 
103
{ERR_REASON(DSA_R_OPERATION_NOT_ALLOWED_IN_FIPS_MODE),"operation not allowed in fips mode"},
96
104
{0,NULL}
97
105
        };
98
106