Class RangedGetUtils
- java.lang.Object
-
- software.amazon.encryption.s3.legacy.internal.RangedGetUtils
-
public class RangedGetUtils extends Object
Utilities for processing Ranged Get functions.
-
-
Constructor Summary
Constructors Constructor Description RangedGetUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static org.reactivestreams.Subscriber<? super ByteBuffer>
adjustToDesiredRange(org.reactivestreams.Subscriber<? super ByteBuffer> subscriber, long[] cryptoRange, String contentRange, int cipherTagLengthBits)
static long[]
getCryptoRange(String desiredRange)
static String
getCryptoRangeAsString(String desiredRange)
static long[]
getRange(String range)
-
-
-
Method Detail
-
getRange
public static long[] getRange(String range)
-
getCryptoRange
public static long[] getCryptoRange(String desiredRange)
-
adjustToDesiredRange
public static org.reactivestreams.Subscriber<? super ByteBuffer> adjustToDesiredRange(org.reactivestreams.Subscriber<? super ByteBuffer> subscriber, long[] cryptoRange, String contentRange, int cipherTagLengthBits)
-
-