Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
DBに保存したい公開鍵の値があります。Blobとして保存しました。Javaに関係する行は次のとおりです。
byte[] pk = ((BigInteger) Modulus ).toByteArray();
と
preparedStmt.setBytes(1, pk);
ワークベンチGUIでMySQLDBを開くと、値自体がバイトとして表示されません。むしろ、私は次のように見えます:
これがどのように表示されるかわからないのか、何か足りないものがあるのかわかりません。