blob: 039b49f1f8474f65bb2f7a0caae0adb3f0589932 [file] [log] [blame]
<!DOCTYPE HTML>
<html lang="fr">
<head>
<title>Source code</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<main role="main">
<div class="sourceContainer">
<pre><span class="sourceLineNo">001</span><a id="line.1">/*</a>
<span class="sourceLineNo">002</span><a id="line.2"> * Licensed to the Apache Software Foundation (ASF) under one</a>
<span class="sourceLineNo">003</span><a id="line.3"> * or more contributor license agreements. See the NOTICE file</a>
<span class="sourceLineNo">004</span><a id="line.4"> * distributed with this work for additional information</a>
<span class="sourceLineNo">005</span><a id="line.5"> * regarding copyright ownership. The ASF licenses this file</a>
<span class="sourceLineNo">006</span><a id="line.6"> * to you under the Apache License, Version 2.0 (the</a>
<span class="sourceLineNo">007</span><a id="line.7"> * "License"); you may not use this file except in compliance</a>
<span class="sourceLineNo">008</span><a id="line.8"> * with the License. You may obtain a copy of the License at</a>
<span class="sourceLineNo">009</span><a id="line.9"> *</a>
<span class="sourceLineNo">010</span><a id="line.10"> * http://www.apache.org/licenses/LICENSE-2.0</a>
<span class="sourceLineNo">011</span><a id="line.11"> *</a>
<span class="sourceLineNo">012</span><a id="line.12"> * Unless required by applicable law or agreed to in writing,</a>
<span class="sourceLineNo">013</span><a id="line.13"> * software distributed under the License is distributed on an</a>
<span class="sourceLineNo">014</span><a id="line.14"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</a>
<span class="sourceLineNo">015</span><a id="line.15"> * KIND, either express or implied. See the License for the</a>
<span class="sourceLineNo">016</span><a id="line.16"> * specific language governing permissions and limitations</a>
<span class="sourceLineNo">017</span><a id="line.17"> * under the License.</a>
<span class="sourceLineNo">018</span><a id="line.18"> */</a>
<span class="sourceLineNo">019</span><a id="line.19">package org.apache.shiro.authc.credential;</a>
<span class="sourceLineNo">020</span><a id="line.20"></a>
<span class="sourceLineNo">021</span><a id="line.21">import org.apache.shiro.crypto.hash.AbstractHash;</a>
<span class="sourceLineNo">022</span><a id="line.22">import org.apache.shiro.crypto.hash.Hash;</a>
<span class="sourceLineNo">023</span><a id="line.23">import org.apache.shiro.crypto.hash.Md2Hash;</a>
<span class="sourceLineNo">024</span><a id="line.24"></a>
<span class="sourceLineNo">025</span><a id="line.25"></a>
<span class="sourceLineNo">026</span><a id="line.26">/**</a>
<span class="sourceLineNo">027</span><a id="line.27"> * {@code HashedCredentialsMatcher} implementation that expects the stored {@code AuthenticationInfo} credentials to be</a>
<span class="sourceLineNo">028</span><a id="line.28"> * MD2 hashed.</a>
<span class="sourceLineNo">029</span><a id="line.29"> * &lt;p/&gt;</a>
<span class="sourceLineNo">030</span><a id="line.30"> * &lt;b&gt;Note:&lt;/b&gt; the MD2, &lt;a href="http://en.wikipedia.org/wiki/MD5"&gt;MD5&lt;/a&gt; and</a>
<span class="sourceLineNo">031</span><a id="line.31"> * &lt;a href="http://en.wikipedia.org/wiki/SHA_hash_functions"&gt;SHA-1&lt;/a&gt; algorithms are now known to be vulnerable to</a>
<span class="sourceLineNo">032</span><a id="line.32"> * compromise and/or collisions (read the linked pages for more). While most applications are ok with either of these</a>
<span class="sourceLineNo">033</span><a id="line.33"> * two, if your application mandates high security, use the SHA-256 (or higher) hashing algorithms and their</a>
<span class="sourceLineNo">034</span><a id="line.34"> * supporting &lt;code&gt;CredentialsMatcher&lt;/code&gt; implementations.&lt;/p&gt;</a>
<span class="sourceLineNo">035</span><a id="line.35"> *</a>
<span class="sourceLineNo">036</span><a id="line.36"> * @since 0.9</a>
<span class="sourceLineNo">037</span><a id="line.37"> * @deprecated since 1.1 - use the HashedCredentialsMatcher directly and set its</a>
<span class="sourceLineNo">038</span><a id="line.38"> * {@link HashedCredentialsMatcher#setHashAlgorithmName(String) hashAlgorithmName} property.</a>
<span class="sourceLineNo">039</span><a id="line.39"> */</a>
<span class="sourceLineNo">040</span><a id="line.40">@Deprecated</a>
<span class="sourceLineNo">041</span><a id="line.41">public class Md2CredentialsMatcher extends HashedCredentialsMatcher {</a>
<span class="sourceLineNo">042</span><a id="line.42"></a>
<span class="sourceLineNo">043</span><a id="line.43"> public Md2CredentialsMatcher() {</a>
<span class="sourceLineNo">044</span><a id="line.44"> super();</a>
<span class="sourceLineNo">045</span><a id="line.45"> setHashAlgorithmName(Md2Hash.ALGORITHM_NAME);</a>
<span class="sourceLineNo">046</span><a id="line.46"> }</a>
<span class="sourceLineNo">047</span><a id="line.47">}</a>
</pre>
</div>
</main>
</body>
</html>