You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by bd...@apache.org on 2017/06/22 20:29:56 UTC

svn commit: r1799614 - in /shiro/site/publish: features-overview.html features.html java-cryptography-guide.html

Author: bdemers
Date: Thu Jun 22 20:29:56 2017
New Revision: 1799614

URL: http://svn.apache.org/viewvc?rev=1799614&view=rev
Log:
updating shiro site

Modified:
    shiro/site/publish/features-overview.html
    shiro/site/publish/features.html
    shiro/site/publish/java-cryptography-guide.html

Modified: shiro/site/publish/features-overview.html
URL: http://svn.apache.org/viewvc/shiro/site/publish/features-overview.html?rev=1799614&r1=1799613&r2=1799614&view=diff
==============================================================================
--- shiro/site/publish/features-overview.html (original)
+++ shiro/site/publish/features-overview.html Thu Jun 22 20:29:56 2017
@@ -244,7 +244,7 @@
 </ul>
 <a name="FeaturesOverview-WantmoreinformationonwhatShirocando%3F"></a>
 <h2><a href="#want-more-information-on-what-shiro-can-do-" name="want-more-information-on-what-shiro-can-do-">Want more information on what Shiro can do?</a></h2>
-<p>Check out the specific features for each of Shiro&rsquo;s major components: <a href="authentication-features.html" title="Authentication Features">Authentications</a>, <a href="authorization-features.html" title="Authorization Features">Authorization</a>, <a href="session-management-features.html" title="Session Management Features">Session Management</a>, and <a href="cryptography-features.html" title="Cryptography Features">Cryptogrpahy</a>.</p>
+<p>Check out the specific features for each of Shiro&rsquo;s major components: <a href="authentication-features.html" title="Authentication Features">Authentications</a>, <a href="authorization-features.html" title="Authorization Features">Authorization</a>, <a href="session-management-features.html" title="Session Management Features">Session Management</a>, and <a href="cryptography-features.html" title="Cryptography Features">Cryptography</a>.</p>
 <a name="FeaturesOverview-GetStartedin10MinuteswithShiro"></a>
 <h2><a href="#get-started-in-10-minutes-with-shiro" name="get-started-in-10-minutes-with-shiro">Get Started in 10 Minutes with Shiro</a></h2>
 <p>Try out Shiro for yourself with our <a href="10-minute-tutorial.html" title="10 Minute Tutorial">10 Minute Tutorial</a>. And if you have any questions about Shiro, please check out our <a href="forums.html" title="Forums">community forum</a> or <a href="mailing-lists.html" title="Mailing Lists">user mailing list</a> for answers from the community.<br/><input type="hidden" id="ghEditPage" value="features-overview.md"></input></p>

Modified: shiro/site/publish/features.html
URL: http://svn.apache.org/viewvc/shiro/site/publish/features.html?rev=1799614&r1=1799613&r2=1799614&view=diff
==============================================================================
--- shiro/site/publish/features.html (original)
+++ shiro/site/publish/features.html Thu Jun 22 20:29:56 2017
@@ -235,7 +235,7 @@
   <li>
   <p>Simple Single Sign-On (SSO) support piggybacking the above Enterprise Session Management. If sessions are federated across multiple applications, the user&rsquo;s authentication state can be shared too. Log in once to any application and the others all recognize that log-in.</p></li>
   <li>
-  <p>Secure data with the easiest possible <a href="cryptography-features.html">Cryptogrpahy</a> APIs available, giving you power and simplicity beyond what Java provides by default for ciphers and hashes.</p></li>
+  <p>Secure data with the easiest possible <a href="cryptography-features.html">Cryptography</a> APIs available, giving you power and simplicity beyond what Java provides by default for ciphers and hashes.</p></li>
   <li>
   <p>An incredibly robust yet <em>low-configuration</em> web framework that can secure any url or resource, automatically handle logins and logouts, perform Remember Me services, and more.</p></li>
   <li>

Modified: shiro/site/publish/java-cryptography-guide.html
URL: http://svn.apache.org/viewvc/shiro/site/publish/java-cryptography-guide.html?rev=1799614&r1=1799613&r2=1799614&view=diff
==============================================================================
--- shiro/site/publish/java-cryptography-guide.html (original)
+++ shiro/site/publish/java-cryptography-guide.html Thu Jun 22 20:29:56 2017
@@ -230,10 +230,10 @@
 <script type="text/javascript">var addthis_config = {"data_track_clickback":true};</script>
 <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-4d66ef016022c3bd"></script>
 <p>Cryptography is the protecting of information from undesired access by hiding it or converting it into nonsense so that no one can read it.</p>
-<p>Shiro is a major part of Shiro because we wanted to provide you with simplicity on what is typically a very complex topic. For example, the Java Cryptophay Environments (JCE) already handles cryptogrpahy in a Java environment but is very difficult to learn and use. So we grabbed the concepts made available by the JCE API and make them available to us mortals. In addition, all of the calls in the JCE are procedural which doesn&rsquo;t fit in Java&rsquo;s Object Oriented paradigm. So in Shiro, our cryptography features are all object oriented.</p>
+<p>Shiro is a major part of Shiro because we wanted to provide you with simplicity on what is typically a very complex topic. For example, the Java Cryptography Extension (JCE) already handles cryptography in a Java environment but is very difficult to learn and use. So we grabbed the concepts made available by the JCE API and make them available to us mortals. In addition, all of the calls in the JCE are procedural which doesn&rsquo;t fit in Java&rsquo;s Object Oriented paradigm. So in Shiro, our cryptography features are all object oriented.</p>
 <a name="JavaCryptographyGuide-ElementsofCryptography"></a>
 <h2><a href="#elements-of-cryptography" name="elements-of-cryptography">Elements of Cryptography</a></h2>
-<p>Cryptogrpahy has two core elements in Shiro&ndash; ciphers and hashes.</p>
+<p>cryptography has two core elements in Shiro&ndash; ciphers and hashes.</p>
 <a name="JavaCryptographyGuide-CiphersDefined"></a>
 <h3><a href="#ciphers-defined" name="ciphers-defined">Ciphers Defined</a></h3>
 <p>Ciphers are algorightms that can either encrypt or decrypt based on public or private key pair. And there are two different types of ciphers:</p>