org.cryptomator.cryptofs.dir.Node Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cryptofs Show documentation
Show all versions of cryptofs Show documentation
This library provides the Java filesystem provider used by Cryptomator.
The newest version!
package org.cryptomator.cryptofs.dir;
import java.nio.file.Path;
import java.util.Objects;
class Node {
public final Path ciphertextPath;
public final String fullCiphertextFileName;
public String extractedCiphertext;
public String cleartextName;
public Node(Path ciphertextPath) {
this.ciphertextPath = Objects.requireNonNull(ciphertextPath);
this.fullCiphertextFileName = ciphertextPath.getFileName().toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy