All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.orientechnologies.orient.core.metadata.security.OPropertyEncryptionNone Maven / Gradle / Ivy

There is a newer version: 3.2.32
Show newest version
package com.orientechnologies.orient.core.metadata.security;

public class OPropertyEncryptionNone implements OPropertyEncryption {

  private static final OPropertyEncryptionNone inst = new OPropertyEncryptionNone();

  public static OPropertyEncryption instance() {
    return inst;
  }

  public boolean isEncrypted(String name) {
    return false;
  }

  public byte[] encrypt(String name, byte[] values) {
    return values;
  }

  public byte[] decrypt(String name, byte[] values) {
    return values;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy