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

org.cryptomator.cryptofs.dir.Node Maven / Gradle / Ivy

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