/* * Copyright (c) 2011-2015, Isode Limited, London, England. * All rights reserved. */ package com.isode.stroke.base; import com.isode.stroke.base.ByteArray; /** * It's currently not actually secure, * and that we might consider if http://developer.android.com/reference/java/nio/ByteBuffer.html#allocateDirect(int) could help us in the future. */ public class SafeByteArray extends ByteArray { public SafeByteArray() { } public SafeByteArray(String s) { super(s); } }