=pod =head1 NAME EVP_PKEY-FFC - EVP_PKEY DSA and DH shared FFC parameters. =head1 DESCRIPTION Finite field cryptography (FFC) is a method of implementing discrete logarithm cryptography using finite field mathematics. DSA is an example of FFC and Diffie-Hellman key establishment algorithms specified in SP800-56A can also be implemented as FFC. The B and B keytypes are implemented in OpenSSL's default and FIPS providers. The implementations support the basic DSA and DH keys, containing the public and private keys I and I as well as the three main domain parameters I

, I and I. For B (and B that is not a named group) the FIPS186-4 standard specifies that the values used for FFC parameter generation are also required for parameter validation. This means that optional FFC domain parameter values for I, I and I may need to be stored for validation purposes. For B the I and I can be stored in ASN1 data (but the I is not). For B however, these fields are not stored in the ASN1 data so they need to be stored externally if validation is required. =head2 FFC parameters In addition to the common parameters that all keytypes should support (see L), the B and B keytype implementations support the following. =over 4 =item "pub" (B) The public key value. =item "priv" (B) The private key value. =item "p" (B) A DSA or Diffie-Hellman prime "p" value. =item "q" (B) A DSA or Diffie-Hellman prime "q" value. =item "g" (B) A DSA or Diffie-Hellman generator "g" value. =item "seed" (B) An optional domain parameter I value used during generation and validation of I

, I and canonical I. For validation this needs to set the I that was produced during generation. =item "gindex" (B) Sets the index to use for canonical generation and verification of the generator I. Set this to a positive value from 0..FF to use this mode. This I can then be reused during key validation to verify the value of I. If this value is not set or is -1 then unverifiable generation of the generator I will be used. =item "pcounter" (B) An optional domain parameter I value that is output during generation of I

. This value must be saved if domain parameter validation is required. =item "hindex" (B) For unverifiable generation of the generator I this value is output during generation of I. Its value is the first integer larger than one that satisfies g = h^j mod p (where g != 1 and "j" is the cofactor). =item "j" (B) An optional informational cofactor parameter that should equal to (p - 1) / q. =back =head2 FFC key generation parameters The following key generation types are available for DSA and DH algorithms: =over 4 =item "type" (B) Sets the type of parameter generation. The shared valid values are: =over 4 =item "fips186_4" The current standard. This is the default value. =item "fips186_2" The old standard that should only be used for legacy purposes. =item "default" This is an alias to use the latest implemented standard. It is currently set to "fips186_4". =back =item "pbits" (B) Sets the size (in bits) of the prime 'p'. =item "qbits" (B) Sets the size (in bits) of the prime 'q'. For "fips186_4" this can be either 224 or 256. For "fips186_2" this has a size of 160. =item "digest" (B) Sets the Digest algorithm to be used as part of the Key Generation Function associated with the given Key Generation I. This must also be set for key validation. =item "properties" (B) Sets properties to be used upon look up of the implementation for the selected Digest algorithm for the Key Generation Function associated with the given key generation I. This may also be set for key validation. =item "seed" (B) For "fips186_4" or "fips186_2" generation this sets the I data to use instead of generating a random seed internally. This should be used for testing purposes only. This will either produce fixed values for the generated parameters OR it will fail if the seed did not generate valid primes. =item "gindex" (B) =item "pcounter" (B) =item "hindex" (B) These types are described above. =back =head1 CONFORMING TO The following sections of SP800-56Ar3: =over 4 =item 5.5.1.1 FFC Domain Parameter Selection/Generation =back The following sections of FIPS 186-4: =over 4 =item A.1.1.2 Generation of Probable Primes p and q Using an Approved Hash Function. =item A.2.3 Generation of canonical generator g. =item A.2.1 Unverifiable Generation of the Generator g. =back =head1 SEE ALSO L, L, L, L L, L, L, L, L, =head1 COPYRIGHT Copyright 2020 The OpenSSL Project Authors. All Rights Reserved. Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at L. =cut