Skip to content

Commit 7c7de8f

Browse files
committed
Make parseDerExplicitlyTaggedContextSpecificConstructed private
1 parent e60862a commit 7c7de8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

yubico-util/src/main/java/com/yubico/internal/util/BinaryUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ public static ParseDerResult<byte[]> parseDerSequence(@NonNull byte[] der, int o
319319
* "constructed" encoding (bit 6 is 1), with a prescribed tag value, and return a copy of the
320320
* content octets.
321321
*/
322-
public static ParseDerResult<byte[]> parseDerExplicitlyTaggedContextSpecificConstructed(
322+
private static ParseDerResult<byte[]> parseDerExplicitlyTaggedContextSpecificConstructed(
323323
@NonNull byte[] der, int offset, byte tagNumber) {
324324
if (tagNumber <= 30 && tagNumber >= 0) {
325325
return parseDerTagged(der, offset, (byte) ((tagNumber & 0x1f) | 0xa0));

0 commit comments

Comments
 (0)