Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / validate_x509_rsa_key_pair.rb
index ea69dc4..93388e0 100644 (file)
@@ -3,13 +3,15 @@
 #
 module Puppet::Parser::Functions
   newfunction(:validate_x509_rsa_key_pair, :doc => <<-DOC
-    Validates a PEM-formatted X.509 certificate and RSA private key using
-    OpenSSL. Verifies that the certficate's signature was created from the
-    supplied key.
+    @summary
+      Validates a PEM-formatted X.509 certificate and RSA private key using
+      OpenSSL. Verifies that the certficate's signature was created from the
+      supplied key.
 
-    Fail compilation if any value fails this check.
+    @return
+      Fail compilation if any value fails this check.
 
-    validate_x509_rsa_key_pair($cert, $key)
+    ```validate_x509_rsa_key_pair($cert, $key)```
 
     DOC
              ) do |args|