This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#----------------------------------------- | |
# Build layer: here we setup the base | |
# python environment, install core modules | |
# including the pre-requisites for talking | |
# to a private Azure Artifacts repo | |
# | |
# https://docs.microsoft.com/en-us/azure/devops/artifacts/quickstarts/python-packages | |
# | |
# https://bitsofinfo.wordpress.com/2021/06/03/private-python-azure-artifacts-feeds-alpine-docker/ | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.bitsofinfo; | |
import java.security.Provider; | |
import org.bouncycastle.jce.provider.BouncyCastleProvider; | |
import org.jasypt.encryption.pbe.StandardPBEByteEncryptor; | |
import org.jasypt.exceptions.EncryptionOperationNotPossibleException; | |
import org.jasypt.salt.RandomSaltGenerator; | |
/** |