Skip to content

Commit

Permalink
fixed bug in tag value calculator.
Browse files Browse the repository at this point in the history
  • Loading branch information
dghgit committed Aug 24, 2018
1 parent 69493c1 commit df98e3e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/src/main/java/org/bouncycastle/asn1/eac/EACTags.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ public static int encodeTag(ASN1ApplicationSpecific spec)
retValue <<= 8;

currentByte = tag & 0x7F;
retValue |= currentByte;
tag >>= 7;
}
}
Expand Down

0 comments on commit df98e3e

Please sign in to comment.