Just plain text e.g.
<?php echo "This is an php example" ?>
<Location /example>
    Order Deny,Allow
    Deny from all
    Allow from .foo.com
</Location>
void simpleHash(const uint8_t *input, size_t length, Hash *hash) {
    uint32_t hashValue = 0;

    for (size_t i = 0; i < length; i++) {
        hashValue = (hashValue * 31) + input[i];
    }

    for (size_t i = 0; i < HASH_SIZE; i++) {
        hash->data[i] = (hashValue >> (i * 8)) & 0xFF;
    }
}