MayMeow/php-encrypt

View on GitHub
docs/layouts/index.html

Summary

Maintainability
Test Coverage
{{ define "main" }}
<section class="section container-fluid mt-n3 pb-3">
  <div class="row justify-content-center">
    <div class="col-lg-12 text-center">
      <h1 class="mt-0">{{ .Title }}</h1>
    </div>
    <div class="col-lg-9 col-xl-8 text-center">
      <p class="lead">{{ .Params.Lead | safeHTML }}</p>
      <a class="btn btn-primary btn-lg px-4 mb-2" href="{{ "docs/prologue/introduction/" | absURL }}" role="button">Get started</a>
      <p class="meta">Open-source MIT Licensed. <a href="https://github.com/MayMeow/php-encrypt">GitHub v{{ .Site.Data.doks.version }}</a></p>
    </div>
  </div>
</section>
{{ end }}

{{ define "sidebar-prefooter" }}
<section class="section section-sm">
  <div class="container">
    <div class="row justify-content-center text-center">
      <div class="col-lg-5">
        <h2 class="h4">Object way</h2>
        <p>Use openssl in your project object way.</p>
      </div>
      <div class="col-lg-5">
        <h2 class="h4">AES</h2>
        <p>Encrypt and decrypt key with Advanced encryption standard.</p>
      </div>
      <div class="col-lg-5">
        <h2 class="h4">RSA</h2>
        <p>You can encrypt/decrypt text with key pairs. This library also allow you to sign and verify signed text.</p>
      </div>
    </div>
    <div class="row justify-content-center text-center">
      <div class="col-lg-5">
        <h2 class="h4">Certificate Authority</h2>
        <p>Simple solution to create CAs and sign users certificates. Now its suported users, server and code sign certificate type.</p>
      </div>
      <div class="col-lg-5">
        <h2 class="h4">Extendable</h2>
        <p>Do you need feature which is not provided? No problem you can extend this library as you wish or you can use interfaces to help you with it.</p>
      </div>
      <div class="col-lg-5">
        <h2 class="h4">MIT License</h2>
        <p>This library is distributed under MIT license.</p>
      </div>
    </div>
  </div>
</section>
{{ end }}

{{ define "sidebar-footer" }}
<section class="section section-sm container-fluid">
  <div class="row justify-content-center text-center">
    <div class="col-lg-9">
      {{- .Content -}}
    </div>
  </div>
</section>
{{ end }}