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

« back to all changes in this revision

Viewing changes to crypto/dh/dh_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/dh/dh_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
74
74
{ERR_FUNC(DH_F_DHPARAMS_PRINT), "DHparams_print"},
75
75
{ERR_FUNC(DH_F_DHPARAMS_PRINT_FP),      "DHparams_print_fp"},
76
76
{ERR_FUNC(DH_F_DH_BUILTIN_GENPARAMS),   "DH_BUILTIN_GENPARAMS"},
 
77
{ERR_FUNC(DH_F_DH_COMPUTE_KEY), "DH_compute_key"},
 
78
{ERR_FUNC(DH_F_DH_GENERATE_KEY),        "DH_generate_key"},
 
79
{ERR_FUNC(DH_F_DH_GENERATE_PARAMETERS), "DH_generate_parameters"},
77
80
{ERR_FUNC(DH_F_DH_NEW_METHOD),  "DH_new_method"},
78
81
{ERR_FUNC(DH_F_GENERATE_KEY),   "GENERATE_KEY"},
79
82
{ERR_FUNC(DH_F_GENERATE_PARAMETERS),    "GENERATE_PARAMETERS"},
84
87
        {
85
88
{ERR_REASON(DH_R_BAD_GENERATOR)          ,"bad generator"},
86
89
{ERR_REASON(DH_R_INVALID_PUBKEY)         ,"invalid public key"},
 
90
{ERR_REASON(DH_R_KEY_SIZE_TOO_SMALL)     ,"key size too small"},
87
91
{ERR_REASON(DH_R_MODULUS_TOO_LARGE)      ,"modulus too large"},
88
92
{ERR_REASON(DH_R_NO_PRIVATE_VALUE)       ,"no private value"},
89
93
{0,NULL}