OSSL_CRMF_pbmp_new.3ossl 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. .\" -*- mode: troff; coding: utf-8 -*-
  2. .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43)
  3. .\"
  4. .\" Standard preamble:
  5. .\" ========================================================================
  6. .de Sp \" Vertical space (when we can't use .PP)
  7. .if t .sp .5v
  8. .if n .sp
  9. ..
  10. .de Vb \" Begin verbatim text
  11. .ft CW
  12. .nf
  13. .ne \\$1
  14. ..
  15. .de Ve \" End verbatim text
  16. .ft R
  17. .fi
  18. ..
  19. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>.
  20. .ie n \{\
  21. . ds C` ""
  22. . ds C' ""
  23. 'br\}
  24. .el\{\
  25. . ds C`
  26. . ds C'
  27. 'br\}
  28. .\"
  29. .\" Escape single quotes in literal strings from groff's Unicode transform.
  30. .ie \n(.g .ds Aq \(aq
  31. .el .ds Aq '
  32. .\"
  33. .\" If the F register is >0, we'll generate index entries on stderr for
  34. .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
  35. .\" entries marked with X<> in POD. Of course, you'll have to process the
  36. .\" output yourself in some meaningful fashion.
  37. .\"
  38. .\" Avoid warning from groff about undefined register 'F'.
  39. .de IX
  40. ..
  41. .nr rF 0
  42. .if \n(.g .if rF .nr rF 1
  43. .if (\n(rF:(\n(.g==0)) \{\
  44. . if \nF \{\
  45. . de IX
  46. . tm Index:\\$1\t\\n%\t"\\$2"
  47. ..
  48. . if !\nF==2 \{\
  49. . nr % 0
  50. . nr F 2
  51. . \}
  52. . \}
  53. .\}
  54. .rr rF
  55. .\" ========================================================================
  56. .\"
  57. .IX Title "OSSL_CRMF_PBMP_NEW 3ossl"
  58. .TH OSSL_CRMF_PBMP_NEW 3ossl 2025-01-17 3.4.0 OpenSSL
  59. .\" For nroff, turn off justification. Always turn off hyphenation; it makes
  60. .\" way too many mistakes in technical documents.
  61. .if n .ad l
  62. .nh
  63. .SH NAME
  64. OSSL_CRMF_pbm_new,
  65. OSSL_CRMF_pbmp_new
  66. \&\- functions for producing Password\-Based MAC (PBM)
  67. .SH SYNOPSIS
  68. .IX Header "SYNOPSIS"
  69. .Vb 1
  70. \& #include <openssl/crmf.h>
  71. \&
  72. \& int OSSL_CRMF_pbm_new(OSSL_LIB_CTX *libctx, const char *propq,
  73. \& const OSSL_CRMF_PBMPARAMETER *pbmp,
  74. \& const unsigned char *msg, size_t msglen,
  75. \& const unsigned char *sec, size_t seclen,
  76. \& unsigned char **mac, size_t *maclen);
  77. \&
  78. \& OSSL_CRMF_PBMPARAMETER *OSSL_CRMF_pbmp_new(OSSL_LIB_CTX *libctx, size_t saltlen,
  79. \& int owfnid, size_t itercnt,
  80. \& int macnid);
  81. .Ve
  82. .SH DESCRIPTION
  83. .IX Header "DESCRIPTION"
  84. \&\fBOSSL_CRMF_pbm_new()\fR generates a PBM (Password-Based MAC) based on given PBM
  85. parameters \fIpbmp\fR, message \fImsg\fR, and secret \fIsec\fR, along with the respective
  86. lengths \fImsglen\fR and \fIseclen\fR.
  87. The optional library context \fIlibctx\fR and \fIpropq\fR parameters may be used
  88. to influence the selection of the MAC algorithm referenced in the \fIpbmp\fR;
  89. see "ALGORITHM FETCHING" in \fBcrypto\fR\|(7) for further information.
  90. On success writes the address of the newly
  91. allocated MAC via the \fImac\fR reference parameter and writes the length via the
  92. \&\fImaclen\fR reference parameter unless it its NULL.
  93. .PP
  94. \&\fBOSSL_CRMF_pbmp_new()\fR initializes and returns a new \fBPBMParameter\fR structure
  95. with a new random salt of given length \fIsaltlen\fR,
  96. OWF (one-way function) NID \fIowfnid\fR, OWF iteration count \fIitercnt\fR,
  97. and MAC NID \fImacnid\fR.
  98. The library context \fIlibctx\fR parameter may be used to select the provider
  99. for the random number generation (DRBG) and may be NULL for the default.
  100. .SH NOTES
  101. .IX Header "NOTES"
  102. The algorithms for the OWF (one-way function) and for the MAC (message
  103. authentication code) may be any with a NID defined in \fI<openssl/objects.h>\fR.
  104. As specified by RFC 4210, these should include NID_hmac_sha1.
  105. .PP
  106. RFC 4210 recommends that the salt SHOULD be at least 8 bytes (64 bits) long,
  107. where 16 bytes is common.
  108. .PP
  109. The iteration count must be at least 100, as stipulated by RFC 4211, and is
  110. limited to at most 100000 to avoid DoS through manipulated or otherwise
  111. malformed input.
  112. .SH "RETURN VALUES"
  113. .IX Header "RETURN VALUES"
  114. \&\fBOSSL_CRMF_pbm_new()\fR returns 1 on success, 0 on error.
  115. .PP
  116. \&\fBOSSL_CRMF_pbmp_new()\fR returns a new and initialized OSSL_CRMF_PBMPARAMETER
  117. structure, or NULL on error.
  118. .SH EXAMPLES
  119. .IX Header "EXAMPLES"
  120. .Vb 5
  121. \& OSSL_CRMF_PBMPARAMETER *pbm = NULL;
  122. \& unsigned char *msg = "Hello";
  123. \& unsigned char *sec = "SeCrEt";
  124. \& unsigned char *mac = NULL;
  125. \& size_t maclen;
  126. \&
  127. \& if ((pbm = OSSL_CRMF_pbmp_new(16, NID_sha256, 500, NID_hmac_sha1) == NULL))
  128. \& goto err;
  129. \& if (!OSSL_CRMF_pbm_new(pbm, msg, 5, sec, 6, &mac, &maclen))
  130. \& goto err;
  131. .Ve
  132. .SH "SEE ALSO"
  133. .IX Header "SEE ALSO"
  134. RFC 4211 section 4.4
  135. .SH HISTORY
  136. .IX Header "HISTORY"
  137. The OpenSSL CRMF support was added in OpenSSL 3.0.
  138. .SH COPYRIGHT
  139. .IX Header "COPYRIGHT"
  140. Copyright 2007\-2021 The OpenSSL Project Authors. All Rights Reserved.
  141. .PP
  142. Licensed under the Apache License 2.0 (the "License"). You may not use
  143. this file except in compliance with the License. You can obtain a copy
  144. in the file LICENSE in the source distribution or at
  145. <https://www.openssl.org/source/license.html>.