1#  Copyright 2021 Northern.tech AS
2
3#  This file is part of CFEngine 3 - written and maintained by Northern.tech AS.
4
5#  This program is free software; you can redistribute it and/or modify it
6#  under the terms of the GNU General Public License as published by the
7#  Free Software Foundation; version 3.
8
9#  This program is distributed in the hope that it will be useful,
10#  but WITHOUT ANY WARRANTY; without even the implied warranty of
11#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12#  GNU General Public License for more details.
13
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA
17
18# To the extent this program is licensed as part of the Enterprise
19# versions of Cfengine, the applicable Commercial Open Source License
20# (COSL) may apply to this file if you as a licensee so wish it. See
21# included file COSL.txt.
22
23#+begin_src cfengine3
24body common control
25{
26      bundlesequence => { "example" };
27}
28
29bundle agent example
30
31{
32  vars:
33
34      "md5" string => hash("Cfengine is not cryptic","md5");
35      "sha256" string => hash("Cfengine is not cryptic","sha256");
36      "sha384" string => hash("Cfengine is not cryptic","sha384");
37      "sha512" string => hash("Cfengine is not cryptic","sha512");
38
39  reports:
40
41      "Hashed to: md5 $(md5)";
42      "Hashed to: sha256 $(sha256)";
43      "Hashed to: sha384 $(sha384)";
44      "Hashed to: sha512 $(sha512)";
45
46}
47#+end_src
48###############################################################################
49#+begin_src example_output
50#@ ```
51#@ R: Hashed to: md5 2036af0ee58d6d9dffcc6507af92664f
52#@ R: Hashed to: sha256 e2fb1927976bfe1ea3987c1a731c75e8ac1453d22a21811dc352db5e62d3f73c
53#@ R: Hashed to: sha384 b348c0b83ccd9ee12673f5daaba3ee5f49c42906540936bb16cf9d2001ed502b8c56f6e36b8389ab596febb529aab17f
54#@ R: Hashed to: sha512 29ce0883afbe7740bb2a016735499ae5a0a9b067539018ce6bb2c309a7e885c2d7da64744956e9f151bc72ec8dc19f85efd85eb0a73cbf1e829a15ac9ac35358
55#@ ```
56#+end_src
57