Activate JUnits in project
[dcaegen2/services/sdk.git] / security / crypt-password / src / main / java / org / onap / dcaegen2 / services / sdk / security / CryptPassword.java
1 /*
2  * ============LICENSE_START=======================================================
3  * DCAEGEN2-SERVICES-SDK
4  * ================================================================================
5  * Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.dcaegen2.services.sdk.security;
21
22 import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
23
24 /**
25  * Class for encoding passwords using BCrypt algorithm.
26  */
27 public class CryptPassword {
28
29     private BCryptPasswordEncoder encoder = new BCryptPasswordEncoder();
30
31     /**
32      * Encode the raw password.
33      *
34      * @param rawPassword raw password to be encoded
35      * @return encoded password
36      */
37     public String encode(CharSequence rawPassword) {
38         return encoder.encode(rawPassword);
39     }
40
41     /**
42      * Verify the encoded password matches the submitted raw password. Returns true if the passwords match, false if
43      * they do not.
44      *
45      * @param rawPassword the raw password to encode and match
46      * @param encodedPassword the encoded password to compare with
47      * @return true if the raw password, after encoding, matches the encoded password
48      */
49     public boolean matches(CharSequence rawPassword, String encodedPassword) {
50         return encoder.matches(rawPassword, encodedPassword);
51     }
52 }