2
0

OSSL_PROVIDER-default.pod 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. =pod
  2. =head1 NAME
  3. OSSL_PROVIDER-default - OpenSSL default provider
  4. =head1 DESCRIPTION
  5. The OpenSSL default provider supplies the majority of OpenSSL's diverse
  6. algorithm implementations. It also acts as a fallback when no other
  7. provider has been loaded.
  8. =head2 Properties
  9. The implementations in this provider specifically have this property
  10. defined:
  11. =over 4
  12. =item "provider=default"
  13. =back
  14. It may be used in a property query string with fetching functions such as
  15. L<EVP_MD_fetch(3)> or L<EVP_CIPHER_fetch(3)>, as well as with other
  16. functions that take a property query string, such as
  17. L<EVP_PKEY_CTX_new_from_name(3)>.
  18. It isn't mandatory to query for this property, except to make sure to get
  19. implementations of this provider and none other.
  20. Some implementations may define additional properties. Exact information is
  21. listed below
  22. =head1 OPERATIONS AND ALGORITHMS
  23. The OpenSSL default provider supports these operations and algorithms:
  24. =head2 Hashing Algorithms / Message Digests
  25. =over 4
  26. =item SHA1, see L<EVP_MD-SHA1(7)>
  27. =item SHA2, see L<EVP_MD-SHA2(7)>
  28. =item SHA3, see L<EVP_MD-SHA3(7)>
  29. =item KECCAK-KMAC, see L<EVP_MD-KECCAK-KMAC(7)>
  30. =item SHAKE, see L<EVP_MD-SHAKE(7)>
  31. =item BLAKE2, see L<EVP_MD-BLAKE2(7)>
  32. =item SM3, see L<EVP_MD-SM3(7)>
  33. =item MD5, see L<EVP_MD-MD5(7)>
  34. =item MD5-SHA1, see L<EVP_MD-MD5-SHA1(7)>
  35. =back
  36. =head2 Symmetric Ciphers
  37. =over 4
  38. =item AES, see L<EVP_CIPHER-AES(7)>
  39. =item ARIA, see L<EVP_CIPHER-ARIA(7)>
  40. =item CAMELLIA, see L<EVP_CIPHER-CAMELLIA(7)>
  41. =item DES, see L<EVP_CIPHER-DES(7)>
  42. =item BF, see L<EVP_CIPHER-BF(7)>
  43. =item IDEA, see L<EVP_CIPHER-IDEA(7)>
  44. =item CAST5, see L<EVP_CIPHER-CAST5(7)>
  45. =item SEED, see L<EVP_CIPHER-SEED(7)>
  46. =item SM4, see L<EVP_CIPHER-SM4(7)>
  47. =item RC2, see L<EVP_CIPHER-RC2(7)>
  48. =item RC4, see L<EVP_CIPHER-RC4(7)>
  49. =item RC5, see L<EVP_CIPHER-RC5(7)>
  50. =item ChaCha20, see L<EVP_CIPHER-ChaCha20(7)>
  51. =item ChaCha20-Poly1305, see L<EVP_CIPHER-ChaCha20-Poly1305(7)>
  52. =back
  53. =head2 Message Authentication Code (MAC)
  54. =over 4
  55. =item BLAKE2, see L<EVP_MAC-BLAKE2(7)>
  56. =item CMAC, see L<EVP_MAC-CMAC(7)>
  57. =item GMAC, see L<EVP_MAC-GMAC(7)>
  58. =item HMAC, see L<EVP_MAC-HMAC(7)>
  59. =item KMAC, see L<EVP_MAC-KMAC(7)>
  60. =item SIPHASH, see L<EVP_MAC-Siphash(7)>
  61. =item POLY1305, see L<EVP_MAC-Poly1305(7)>
  62. =back
  63. =head2 Key Derivation Function (KDF)
  64. =over 4
  65. =item HKDF, see L<EVP_KDF-HKDF(7)>
  66. =item SSKDF, see L<EVP_KDF-SS(7)>
  67. =item PBKDF2, see L<EVP_KDF-PBKDF2(7)>
  68. =item SSHKDF, see L<EVP_KDF-SSHKDF(7)>
  69. =item TLS1-PRF, see L<EVP_KDF-TLS1_PRF(7)>
  70. =item KBKDF, see L<EVP_KDF-KB(7)>
  71. =item X942KDF, see L<EVP_KDF-X942(7)>
  72. =item SCRYPT, see L<EVP_KDF-SCRYPT(7)>
  73. =item KRB5KDF, see L<EVP_KDF-KRB5KDF(7)>
  74. =item X963KDF, see L<EVP_KDF-X963(7)>
  75. =back
  76. =head2 Key Exchange
  77. =over 4
  78. =item DH, see L<EVP_KEYEXCH-DH(7)>
  79. =item ECDH, see L<EVP_KEYEXCH-ECDH(7)>
  80. =item X25519, see L<EVP_KEYEXCH-X25519(7)>
  81. =item X448, see L<EVP_KEYEXCH-X448(7)>
  82. =back
  83. =head2 Asymmetric Signature
  84. =over 4
  85. =item DSA, see L<EVP_SIGNATURE-DSA(7)>
  86. =item RSA, see L<EVP_SIGNATURE-RSA(7)>
  87. =back
  88. =head2 Asymmetric Cipher
  89. =over 4
  90. =item RSA, see L<EVP_ASYM_CIPHER-RSA(7)>
  91. =back
  92. =head2 Asymmetric Key Management
  93. =over 4
  94. =item DH, see L<EVP_KEYMGMT-DH(7)>
  95. =item DSA, see L<EVP_KEYMGMT-DSA(7)>
  96. =item RSA, see L<EVP_KEYMGMT-RSA(7)>
  97. =item EC, see L<EVP_KEYMGMT-EC(7)>
  98. =item X25519, see L<EVP_KEYMGMT-X25519(7)>
  99. =item X448, see L<EVP_KEYMGMT-X448(7)>
  100. =back
  101. =head2 Asymmetric Key Serializer
  102. In addition to "provider=default", this set of implementations define the
  103. property "fips=yes", to allow them to be used together with the FIPS
  104. provider.
  105. =over 4
  106. =item RSA, see L<OSSL_SERIALIZER-RSA(7)>
  107. =item DH, see L<OSSL_SERIALIZER-DH(7)>
  108. =item DSA, see L<OSSL_SERIALIZER-DSA(7)>
  109. =item EC, see L<OSSL_SERIALIZER-EC(7)>
  110. =item X25519, see L<OSSL_SERIALIZER-X25519(7)>
  111. =item X448, see L<OSSL_SERIALIZER-X448(7)>
  112. =back
  113. =head1 SEE ALSO
  114. L<openssl-core.h(7)>, L<openssl-core_dispatch.h(7)>, L<provider(7)>
  115. =head1 COPYRIGHT
  116. Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
  117. Licensed under the Apache License 2.0 (the "License"). You may not use
  118. this file except in compliance with the License. You can obtain a copy
  119. in the file LICENSE in the source distribution or at
  120. L<https://www.openssl.org/source/license.html>.
  121. =cut