diff options
author | lloyd <[email protected]> | 2008-04-29 14:39:16 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-04-29 14:39:16 +0000 |
commit | aacaef7d54e997834baf64308b39a102eeb3dd1f (patch) | |
tree | 776d423b6b49283c5f9c682c10c548fd6898943c /include/pubkey.h | |
parent | af8b04c4583dfcad766eeed656650821a9de8675 (diff) |
Move Signature_Format enum to pubkey.h
Including enums.h in needed places since asn1_int.h doesn't pull it in
anymore.
Remove Config::choose_sig_format, and move its logic into its only
caller, the (global!) choose_sig_format in x509_ca.cpp
Diffstat (limited to 'include/pubkey.h')
-rw-r--r-- | include/pubkey.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/pubkey.h b/include/pubkey.h index 798d97661..e4ea4e848 100644 --- a/include/pubkey.h +++ b/include/pubkey.h @@ -12,6 +12,8 @@ namespace Botan { +enum Signature_Format { IEEE_1363, DER_SEQUENCE }; + /************************************************* * Public Key Encryptor * *************************************************/ |