Package sk.vrto.service.crypto

Examples of sk.vrto.service.crypto.SaltedAESStringEncrypter


    private EmailService emailService;
    private StringEncrypter encrypter;

    @BeforeMethod
    protected void setUp() {
        encrypter = new SaltedAESStringEncrypter(new SaltGenerator());
        emailService = new EmailServiceImpl(
                SmtPropertiesFactory.hotmailProperties(), encrypter);
    }
View Full Code Here


@Configuration
public class InjectorConfiguration {

    @Bean(name = "app.saltedAesEncrypter")
    public StringEncrypter saltedAESStringEncrypter() {
        return new SaltedAESStringEncrypter(new SaltGenerator());
    }
View Full Code Here

TOP

Related Classes of sk.vrto.service.crypto.SaltedAESStringEncrypter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.