Lines Matching full:dsa
5 DSA_size, DSA_bits, DSA_security_bits - get DSA signature size, key bits or security bits
9 #include <openssl/dsa.h>
15 int DSA_bits(const DSA *dsa);
17 int DSA_size(const DSA *dsa);
19 int DSA_security_bits(const DSA *dsa);
27 DSA_bits() returns the number of bits in key I<dsa>: this is the number
30 DSA_size() returns the maximum size of an ASN.1 encoded DSA signature
31 for key I<dsa> in bytes. It can be used to determine how much memory must
32 be allocated for a DSA signature.
34 DSA_security_bits() returns the number of security bits of the given I<dsa>
40 I<dsa> doesn't hold any key parameters.
42 DSA_bits() returns the number of bits in the key, or -1 if I<dsa> doesn't
45 DSA_size() returns the signature size in bytes, or -1 if I<dsa> doesn't