コード例 #1
0
ファイル: CcSalted.java プロジェクト: xupyprmv/takes
 @Override
 public Identity decode(final byte[] bytes) throws IOException {
   return this.origin.decode(CcSalted.unsalt(bytes));
 }
コード例 #2
0
ファイル: CcSalted.java プロジェクト: xupyprmv/takes
 @Override
 public byte[] encode(final Identity identity) throws IOException {
   return CcSalted.salt(this.origin.encode(identity));
 }