public String encrypt()

in features/encrypt/rc4/src/main/java/org/apache/shardingsphere/encrypt/rc4/algorithm/RC4EncryptAlgorithm.java [67:69]


    public String encrypt(final Object plainValue, final AlgorithmSQLContext encryptContext) {
        return null == plainValue ? null : Base64.encodeBase64String(crypt(String.valueOf(plainValue).getBytes(StandardCharsets.UTF_8)));
    }