PKCS12_PBE_keyivgen.pod 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. =pod
  2. =head1 NAME
  3. PKCS12_PBE_keyivgen, PKCS12_PBE_keyivgen_ex,
  4. PKCS12_pbe_crypt, PKCS12_pbe_crypt_ex - PKCS#12 Password based encryption
  5. =head1 SYNOPSIS
  6. #include <openssl/evp.h>
  7. int PKCS12_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
  8. ASN1_TYPE *param, const EVP_CIPHER *cipher,
  9. const EVP_MD *md_type, int en_de);
  10. int PKCS12_PBE_keyivgen_ex(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
  11. ASN1_TYPE *param, const EVP_CIPHER *cipher,
  12. const EVP_MD *md_type, int en_de,
  13. OSSL_LIB_CTX *libctx, const char *propq);
  14. unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
  15. const char *pass, int passlen,
  16. const unsigned char *in, int inlen,
  17. unsigned char **data, int *datalen,
  18. int en_de);
  19. unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
  20. const char *pass, int passlen,
  21. const unsigned char *in, int inlen,
  22. unsigned char **data, int *datalen,
  23. int en_de, OSSL_LIB_CTX *libctx,
  24. const char *propq);
  25. =head1 DESCRIPTION
  26. PKCS12_PBE_keyivgen() and PKCS12_PBE_keyivgen_ex() take a password I<pass> of
  27. length I<passlen>, parameters I<param> and a message digest function I<md_type>
  28. and perform a key derivation according to PKCS#12. The resulting key is
  29. then used to initialise the cipher context I<ctx> with a cipher I<cipher> for
  30. encryption (I<en_de>=1) or decryption (I<en_de>=0).
  31. PKCS12_PBE_keyivgen_ex() also allows the application to specify a library context
  32. I<libctx> and property query I<propq> to select appropriate algorithm
  33. implementations.
  34. PKCS12_pbe_crypt() and PKCS12_pbe_crypt_ex() will encrypt or decrypt a buffer
  35. based on the algorithm in I<algor> and password I<pass> of length I<passlen>.
  36. The input is from I<in> of length I<inlen> and output is into a malloc'd buffer
  37. returned in I<*data> of length I<datalen>. The operation is determined by I<en_de>,
  38. encryption (I<en_de>=1) or decryption (I<en_de>=0).
  39. PKCS12_pbe_crypt_ex() allows the application to specify a library context
  40. I<libctx> and property query I<propq> to select appropriate algorithm
  41. implementations.
  42. I<pass> is the password used in the derivation of length I<passlen>. I<pass>
  43. is an optional parameter and can be NULL. If I<passlen> is -1, then the
  44. function will calculate the length of I<pass> using strlen().
  45. I<salt> is the salt used in the derivation of length I<saltlen>. If the
  46. I<salt> is NULL, then I<saltlen> must be 0. The function will not
  47. attempt to calculate the length of the I<salt> because it is not assumed to
  48. be NULL terminated.
  49. I<iter> is the iteration count and its value should be greater than or
  50. equal to 1. RFC 2898 suggests an iteration count of at least 1000. Any
  51. I<iter> less than 1 is treated as a single iteration.
  52. I<digest> is the message digest function used in the derivation.
  53. Functions ending in _ex() take optional parameters I<libctx> and I<propq> which
  54. are used to select appropriate algorithm implementations.
  55. =head1 NOTES
  56. The functions are typically used in PKCS#12 to encrypt objects.
  57. These functions make no assumption regarding the given password.
  58. It will simply be treated as a byte sequence.
  59. =head1 RETURN VALUES
  60. PKCS12_PBE_keyivgen(), PKCS12_PBE_keyivgen_ex() return 1 on success or 0 on error.
  61. PKCS12_pbe_crypt() and PKCS12_pbe_crypt_ex() return a buffer containing the
  62. output or NULL if an error occurred.
  63. =head1 CONFORMING TO
  64. IETF RFC 7292 (L<https://tools.ietf.org/html/rfc7292>)
  65. =head1 SEE ALSO
  66. L<EVP_PBE_CipherInit_ex(3)>,
  67. L<PKCS8_encrypt_ex(3)>,
  68. L<passphrase-encoding(7)>
  69. =head1 HISTORY
  70. PKCS12_PBE_keyivgen_ex() and PKCS12_pbe_crypt_ex() were added in OpenSSL 3.0.
  71. =head1 COPYRIGHT
  72. Copyright 2014-2021 The OpenSSL Project Authors. All Rights Reserved.
  73. Licensed under the Apache License 2.0 (the "License"). You may not use
  74. this file except in compliance with the License. You can obtain a copy
  75. in the file LICENSE in the source distribution or at
  76. L<https://www.openssl.org/source/license.html>.
  77. =cut